MoonWorksTemplate/.vscode/launch.json

17 lines
430 B
JSON
Raw Normal View History

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