vscode 可以使用 Properties/launchSettings.json 中的配置文件吗?

red*_*888 10 visual-studio-code asp.net-core asp.net-core-webapi

有没有办法将“.vscode/launch.json”指向“Properties/launchSettings.json”中定义的配置文件,这样我就不需要重复这些值?

我需要支持几种不同的编辑器,并且还需要从命令行运行

dotnet run --launch-profile="myprofile"
Run Code Online (Sandbox Code Playgroud)

red*_*888 7

这是在debugger-launchjson.md > launchSettings.json support下的文档中:

"launchSettingsProfile": "${workspaceFolder}/<Relative-Path-To-Project-Directory/Properties/launchSettings.json"
Run Code Online (Sandbox Code Playgroud)