使用 windows terminal 作为 visual studio 中启动和调试项目的默认终端
向 launchSettings.json 文件中的 profile 节点下新增一个 “Windows Terminal” 配置即可,demo 如下:
{
"profiles": {
"Windows Terminal": {
"commandName": "Executable",
"executablePath": "C:\\Program Files\\WindowsApps\\Microsoft.WindowsTerminal_1.16.10262.0_x64__8wekyb3d8bbwe\\WindowsTerminal.exe",
"commandLineArgs": "dotnet.exe run --project D:\\Code\\Demo\\Demo.csproj",
"workingDirectory": "D:\\Code\\Demo",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "http://localhost:5000"
},
}
}
executablePath
: windows terminal 的 exe 文件位置commandLineArgs
: .csproj 文件位置workingDirectory
: 包含指定的 .csproj 文件的文件夹