File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 13
13
"program" : " ${workspaceFolder}/bin/Debug/net5.0/AspNetCoreVueStarter.dll" ,
14
14
"args" : [],
15
15
"cwd" : " ${workspaceFolder}" ,
16
+ // this will kill any stray vue-cli processes, as the .NET app can't shut them down when it is killed by the debugger
17
+ "postDebugTask" : " kill" ,
16
18
"stopAtEntry" : false ,
17
19
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
18
20
"serverReadyAction" : {
Original file line number Diff line number Diff line change 37
37
" /consoleloggerparameters:NoSummary"
38
38
],
39
39
"problemMatcher" : " $msCompile"
40
+ },
41
+ {
42
+ "label" : " kill" ,
43
+ "command" : " dotnet" ,
44
+ "type" : " process" ,
45
+ "args" : [
46
+ " run" ,
47
+ " ${workspaceFolder}/bin/Debug/net5.0/AspNetCoreVueStarter.dll" ,
48
+ " /mode:kill"
49
+ ],
50
+ "problemMatcher" : []
40
51
}
41
52
]
42
53
}
You can’t perform that action at this time.
0 commit comments