11{
2- "version" : " 2.0.0" ,
3- "tasks" : [
4- {
5- "label" : " build" ,
6- "command" : " dotnet" ,
7- "type" : " process" ,
8- "args" : [
9- " build" ,
10- " ${workspaceFolder}/GithubActionsHelloWorld.csproj" ,
11- " /property:GenerateFullPaths=true" ,
12- " /consoleloggerparameters:NoSummary"
13- ],
14- "problemMatcher" : " $msCompile"
15- },
16- {
17- "label" : " publish" ,
18- "command" : " dotnet" ,
19- "type" : " process" ,
20- "args" : [
21- " publish" ,
22- " ${workspaceFolder}/GithubActionsHelloWorld.csproj" ,
23- " /property:GenerateFullPaths=true" ,
24- " /consoleloggerparameters:NoSummary"
25- ],
26- "problemMatcher" : " $msCompile"
27- },
28- {
29- "label" : " watch" ,
30- "command" : " dotnet" ,
31- "type" : " process" ,
32- "args" : [
33- " watch" ,
34- " run" ,
35- " ${workspaceFolder}/GithubActionsHelloWorld.csproj" ,
36- " /property:GenerateFullPaths=true" ,
37- " /consoleloggerparameters:NoSummary"
38- ],
39- "problemMatcher" : " $msCompile"
40- }
41- ]
2+ "version" : " 2.0.0" ,
3+ "tasks" : [
4+ {
5+ "label" : " build" ,
6+ "command" : " dotnet" ,
7+ "type" : " process" ,
8+ "args" : [
9+ " build" ,
10+ " ${workspaceFolder}/GithubActionsHelloWorld.csproj" ,
11+ " /property:GenerateFullPaths=true" ,
12+ " /consoleloggerparameters:NoSummary"
13+ ],
14+ "problemMatcher" : " $msCompile"
15+ },
16+ {
17+ "label" : " publish" ,
18+ "command" : " dotnet" ,
19+ "type" : " process" ,
20+ "args" : [
21+ " publish" ,
22+ " ${workspaceFolder}/GithubActionsHelloWorld.csproj" ,
23+ " /property:GenerateFullPaths=true" ,
24+ " /consoleloggerparameters:NoSummary"
25+ ],
26+ "problemMatcher" : " $msCompile"
27+ },
28+ {
29+ "label" : " watch" ,
30+ "command" : " dotnet" ,
31+ "type" : " process" ,
32+ "args" : [
33+ " watch" ,
34+ " run" ,
35+ " ${workspaceFolder}/GithubActionsHelloWorld.csproj" ,
36+ " /property:GenerateFullPaths=true" ,
37+ " /consoleloggerparameters:NoSummary"
38+ ],
39+ "problemMatcher" : " $msCompile"
40+ },
41+ {
42+ "label" : " update nuget" ,
43+ "command" : " ${workspaceFolder}/.vscode/updateNuget.sh" ,
44+ "args" : [],
45+ "group" : " build" ,
46+ "presentation" : {
47+ "reveal" : " always"
48+ },
49+ "problemMatcher" : " $msCompile"
50+ }
51+ ]
4252}
0 commit comments