-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding Tasks/Launch settings for vscode support.
- Loading branch information
1 parent
e594cc9
commit b18fa4c
Showing
2 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Launch Blazor Server App", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"preLaunchTask": "Build (UI)", | ||
"program": "${workspaceFolder}/src/Server.UI/bin/Debug/net8.0/Cfo.Cats.Server.UI.dll", | ||
"args": [], | ||
"cwd": "${workspaceFolder}/src/Server.UI/", | ||
"stopAtEntry": false, | ||
"serverReadyAction": { | ||
"action": "openExternally", | ||
"pattern": "\\bNow listening on:\\s+(https?://\\S+)" | ||
}, | ||
"env": { | ||
"ASPNETCORE_ENVIRONMENT": "Development" | ||
}, | ||
"sourceFileMap": { | ||
"/Views": "${workspaceFolder}/src/Server.UI/Views" | ||
} | ||
}, | ||
{ | ||
"name": "Launch Build Console App", | ||
"type": "coreclr", | ||
"request": "launch", | ||
"preLaunchTask": "Build (Build Project)", | ||
"program": "${workspaceFolder}/build/bin/Debug/net8.0/Build.dll", | ||
"args": [], | ||
"cwd": "${workspaceFolder}/build", | ||
"stopAtEntry": false, | ||
"console": "internalConsole" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Build (UI)", | ||
"command": "dotnet", | ||
"type": "process", | ||
"args": [ | ||
"build", | ||
"${workspaceFolder}/src/Server.UI/Server.UI.csproj" | ||
], | ||
"problemMatcher": "$msCompile", | ||
"group":{ | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
}, | ||
{ | ||
"label": "Build (Build Project)", | ||
"command": "dotnet", | ||
"type": "process", | ||
"args": [ | ||
"build", | ||
"${workspaceFolder}/build/Build.csproj" | ||
], | ||
"problemMatcher": "$msCompile", | ||
"group":{ | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
} | ||
] | ||
} |