mirror of
https://github.com/anegostudios/vsmodtemplate
synced 2025-07-01 16:08:30 +00:00
added vscode CakeBuild to launch.json
This commit is contained in:
parent
5c4a653915
commit
20bf001247
2 changed files with 23 additions and 0 deletions
11
.vscode/launch.json
vendored
11
.vscode/launch.json
vendored
|
@ -45,6 +45,17 @@
|
|||
],
|
||||
"console": "internalConsole",
|
||||
"stopAtEntry": false
|
||||
},
|
||||
{
|
||||
"name": "CakeBuild",
|
||||
"type": "coreclr",
|
||||
"request": "launch",
|
||||
"preLaunchTask": "build (Cake)",
|
||||
"program": "${workspaceFolder}/CakeBuild/bin/Debug/net7.0/CakeBuild.dll",
|
||||
"args": [],
|
||||
"cwd": "${workspaceFolder}/CakeBuild",
|
||||
"stopAtEntry": false,
|
||||
"console": "internalConsole"
|
||||
}
|
||||
]
|
||||
}
|
12
.vscode/tasks.json
vendored
12
.vscode/tasks.json
vendored
|
@ -23,6 +23,18 @@
|
|||
"${workspaceFolder}/CakeBuild/CakeBuild.csproj"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "build (Cake)",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"build",
|
||||
"-c",
|
||||
"Debug",
|
||||
"${workspaceFolder}/CakeBuild/CakeBuild.csproj"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue