File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments