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": [
{
2022-03-03 19:05:23 +00:00
"name": "Attach to .NET 6 Debugger",
2021-04-04 21:01:40 +00:00
"type": "coreclr",
"request": "launch",
2022-03-03 19:05:23 +00:00
"preLaunchTask": "Build: .NET 6 Debug",
"program": "${workspaceFolder}/bin/x64/Debug/net6.0/ProjectName.dll",
2021-04-04 21:01:40 +00:00
"args": [],
2022-03-03 19:05:23 +00:00
"cwd": "${workspaceFolder}/bin/x64/Debug/net6.0",
2021-04-04 21:01:40 +00:00
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}