Selector/.vscode/launch.json

27 lines
887 B
JSON
Raw Normal View History

2021-09-26 12:11:44 +01:00
{
2021-10-12 20:23:25 +01:00
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
2021-09-26 12:11:44 +01:00
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
2021-10-12 20:23:25 +01:00
"program": "${workspaceFolder}/Selector.CLI/bin/Debug/net5.0/Selector.CLI.dll",
"env": {
"DOTNET_ENVIRONMENT": "Development"
},
2021-09-26 12:11:44 +01:00
"args": [],
2021-10-12 20:23:25 +01:00
"cwd": "${workspaceFolder}/Selector.CLI",
2021-09-26 12:11:44 +01:00
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}