Skip to content

Commit 5fe5324

Browse files
Add tasks
1 parent 723d7f1 commit 5fe5324

2 files changed

Lines changed: 41 additions & 0 deletions

File tree

.vscode/launch.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": "Launch StandardSiteGen (pckt.blog)",
6+
"type": "coreclr",
7+
"request": "launch",
8+
"preLaunchTask": "build_standard",
9+
"program": "${workspaceFolder}/apps/StandardSiteGen/bin/Debug/net10.0/StandardSiteGen.dll",
10+
"args": [
11+
"generate",
12+
"pckt.blog",
13+
],
14+
"cwd": "${workspaceFolder}/apps/StandardSiteGen/bin/Debug/net10.0",
15+
"console": "internalConsole",
16+
"stopAtEntry": false
17+
},
18+
{
19+
"name": ".NET Core Attach",
20+
"type": "coreclr",
21+
"request": "attach"
22+
}
23+
]
24+
}

.vscode/tasks.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build_standard",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/apps/StandardSiteGen/StandardSiteGen.csproj",
11+
"/property:GenerateFullPaths=true",
12+
"/consoleloggerparameters:NoSummary"
13+
],
14+
"problemMatcher": "$msCompile"
15+
}
16+
]
17+
}

0 commit comments

Comments
 (0)