]> fortfriendship.online Git - gnargle.github.io.git/blob - .vscode/tasks.json
new entry. happy birthday undertale
[gnargle.github.io.git] / .vscode / tasks.json
1 {
2 "version": "2.0.0",
3 "tasks": [
4 {
5 "label": "build",
6 "command": "dotnet",
7 "type": "process",
8 "args": [
9 "build",
10 "${workspaceFolder}/RSSGen/RSSGen.sln",
11 "/property:GenerateFullPaths=true",
12 "/consoleloggerparameters:NoSummary;ForceNoAlign"
13 ],
14 "problemMatcher": "$msCompile"
15 },
16 {
17 "label": "buildParticle",
18 "command": "dotnet",
19 "type": "process",
20 "args": [
21 "build",
22 "${workspaceFolder}/SiteTools/SiteTools.sln",
23 "/property:GenerateFullPaths=true",
24 "/consoleloggerparameters:NoSummary;ForceNoAlign"
25 ],
26 "problemMatcher": "$msCompile"
27 },
28 {
29 "label": "publish",
30 "command": "dotnet",
31 "type": "process",
32 "args": [
33 "publish",
34 "${workspaceFolder}/RSSGen/RSSGen.sln",
35 "/property:GenerateFullPaths=true",
36 "/consoleloggerparameters:NoSummary;ForceNoAlign"
37 ],
38 "problemMatcher": "$msCompile"
39 },
40 {
41 "label": "watch",
42 "command": "dotnet",
43 "type": "process",
44 "args": [
45 "watch",
46 "run",
47 "--project",
48 "${workspaceFolder}/RSSGen/RSSGen.sln"
49 ],
50 "problemMatcher": "$msCompile"
51 }
52 ]
53 }