2f8e691e05
- Fix build in vscode - Add v2.0.0 tasks.json thanks to Keith Hill - Add '/property:GenerateFullPaths=true' to build to fix the $mscompile 'problem matcher' not working issue.
42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": ".NET Core Launch",
|
|
"type": "coreclr",
|
|
"request": "launch",
|
|
"justMyCode": false,
|
|
"stopAtEntry": true,
|
|
"program": "${workspaceRoot}/debug/pwsh",
|
|
"preLaunchTask": "Build",
|
|
"externalConsole": true,
|
|
"cwd": "${workspaceRoot}"
|
|
},
|
|
{
|
|
"name": ".NET Core Attach",
|
|
"type": "coreclr",
|
|
"request": "attach",
|
|
"justMyCode": false,
|
|
"processId": "${command:pickProcess}"
|
|
},
|
|
{
|
|
"type": "PowerShell",
|
|
"request": "launch",
|
|
"name": "PowerShell Launch Current File",
|
|
"script": "${file}",
|
|
"args": [],
|
|
"cwd": "${file}"
|
|
},
|
|
{
|
|
"type": "PowerShell",
|
|
"request": "launch",
|
|
"name": "PowerShell Launch Current File w/Args Prompt",
|
|
"script": "${file}",
|
|
"args": [
|
|
"${command:SpecifyScriptArgs}"
|
|
],
|
|
"cwd": "${file}"
|
|
}
|
|
]
|
|
}
|