Fix VSCode launch.json for .NET 6 (#3242)

This commit is contained in:
Umar Bolatov 2022-01-02 19:09:43 -08:00 committed by GitHub
parent ab3aab9c22
commit a706f81760
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
.vscode/launch.json vendored
View File

@ -10,7 +10,7 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/BTCPayServer/bin/Debug/netcoreapp3.1/BTCPayServer.dll",
"program": "${workspaceFolder}/BTCPayServer/bin/Debug/net6.0/BTCPayServer.dll",
"args": [],
"cwd": "${workspaceFolder}/BTCPayServer",
"stopAtEntry": false,