1
0
Fork 0
mirror of https://github.com/Corsinvest/cv4pve-pepper.git synced 2025-02-12 10:01:53 +00:00
cv4pve-pepper/.vscode/launch.json

28 lines
1.2 KiB
JSON
Raw Normal View History

2019-10-23 06:43:03 +00:00
{
"version": "0.2.0",
"configurations": [
{
2024-05-02 10:20:45 +00:00
// Usare IntelliSense per individuare gli attributi esistenti per il debug C#
// Usa il passaggio del mouse per la descrizione degli attributi esistenti
// Per ulteriori informazioni, visitare https://github.com/dotnet/vscode-csharp/blob/main/debugger-launchjson.md
2019-10-23 06:43:03 +00:00
"name": ".NET Core Launch (console)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
2024-05-02 10:20:45 +00:00
// Se i framework di destinazione sono stati modificati, assicurarsi di aggiornare il percorso del programma.
"program": "${workspaceFolder}/src/Corsinvest.ProxmoxVE.Pepper/bin/Debug/net8.0/cv4pve-pepper.dll",
2024-06-07 08:03:23 +00:00
"args": [
"@Parm.parm"
],
2019-10-23 06:43:03 +00:00
"cwd": "${workspaceFolder}/src/Corsinvest.ProxmoxVE.Pepper",
2024-05-02 10:20:45 +00:00
// Per ulteriori informazioni sul campo 'console', vedere https://aka.ms/VSCode-CS-LaunchJson-Console
2019-10-23 06:43:03 +00:00
"console": "internalConsole",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
2024-05-02 10:20:45 +00:00
"request": "attach"
2019-10-23 06:43:03 +00:00
}
]
}