chore(tooling): add vscode launch.json config

chore(tooling): add vscode launch.json config
This commit is contained in:
cswimr 2025-01-30 12:00:50 +00:00
parent d1aa3fa551
commit 3cad9b1d13
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087

15
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
// 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
"version": "0.2.0",
"configurations": [
{
"name": "C#: myhm-commission",
"type": "dotnet",
"request": "launch",
"projectPath": "${workspaceFolder}/myhm-commission.csproj"
}
]
}