MoonWorksTemplate/.vscode/launch.json

17 lines
438 B
JSON
Raw Normal View History

2021-04-04 21:01:40 +00:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to .NET 5 Debugger",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "Build: .NET 5 Debug",
"program": "${workspaceFolder}/bin/x64/Debug/net5.0/ProjectName.dll",
2021-04-04 21:01:40 +00:00
"args": [],
"cwd": "${workspaceFolder}/bin/x64/Debug/net5.0",
2021-04-04 21:01:40 +00:00
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}