Skip to content

Commit

Permalink
Update vscode debug setting files
Browse files Browse the repository at this point in the history
  • Loading branch information
Atralupus committed Feb 23, 2024
1 parent 1d9d34c commit 9dfcb23
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 17 deletions.
38 changes: 24 additions & 14 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,25 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug NineChroniclesUtilBackend",
"type": "coreclr",
"request": "launch",
"program": "${workspaceFolder}/NineChroniclesUtilBackend/bin/Debug/net8.0/NineChroniclesUtilBackend.dll",
"cwd": "${workspaceFolder}/NineChroniclesUtilBackend",
"stopAtEntry": false,
"console": "internalConsole",
"preLaunchTask": "build",
}
]
}
"version": "0.2.0",
"configurations": [
{
"name": "Debug NineChroniclesUtilBackend",
"type": "coreclr",
"request": "launch",
"program": "${workspaceFolder}/NineChroniclesUtilBackend/bin/Debug/net8.0/NineChroniclesUtilBackend.dll",
"cwd": "${workspaceFolder}/NineChroniclesUtilBackend",
"stopAtEntry": false,
"console": "internalConsole",
"preLaunchTask": "build-backend"
},
{
"name": "Debug NineChroniclesUtilBackend.Store",
"type": "coreclr",
"request": "launch",
"program": "${workspaceFolder}/NineChroniclesUtilBackend.Store/bin/Debug/net8.0/NineChroniclesUtilBackend.Store.dll",
"cwd": "${workspaceFolder}/NineChroniclesUtilBackend.Store",
"stopAtEntry": false,
"console": "internalConsole",
"preLaunchTask": "build-store"
}
]
}
42 changes: 39 additions & 3 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"version": "2.0.0",
"tasks": [
{
"label": "build",
"label": "build-backend",
"command": "dotnet",
"type": "process",
"args": [
Expand All @@ -14,7 +14,7 @@
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"label": "publish-backend",
"command": "dotnet",
"type": "process",
"args": [
Expand All @@ -26,7 +26,7 @@
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"label": "watch-backend",
"command": "dotnet",
"type": "process",
"args": [
Expand All @@ -36,6 +36,42 @@
"${workspaceFolder}/NineChroniclesUtilBackend/NineChroniclesUtilBackend.csproj"
],
"problemMatcher": "$msCompile"
},
{
"label": "build-store",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/NineChroniclesUtilBackend.Store/NineChroniclesUtilBackend.Store.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish-store",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/NineChroniclesUtilBackend.Store/NineChroniclesUtilBackend.Store.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch-store",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/NineChroniclesUtilBackend.Store/NineChroniclesUtilBackend.Store.csproj"
],
"problemMatcher": "$msCompile"
}
]
}

0 comments on commit 9dfcb23

Please sign in to comment.