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 1313 "program" : " ${workspaceFolder}/bin/Debug/net5.0/AspNetCoreVueStarter.dll" ,
1414 "args" : [],
1515 "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" ,
1618 "stopAtEntry" : false ,
1719 // Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
1820 "serverReadyAction" : {
Original file line number Diff line number Diff line change 3737 " /consoleloggerparameters:NoSummary"
3838 ],
3939 "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" : []
4051 }
4152 ]
4253}
You can’t perform that action at this time.
0 commit comments