asp.net core - Auto detect kestrel process when attaching vs code debugger -
i have incredible task watch
task set in vs code watching dotnet core server. looks this:
{ "version": "0.1.0", "command": "dotnet", "isshellcommand": true, "tasks": [{ "taskname": "watch", "args": [ "watch", "run" ], "showoutput": "always" }] }
whenever .net core attach
debugging, first 2-5 processes not ones want. super slick if, since i'm launching watch task through vs code, have vs code prioritize or maybe select processes running tasks in same workspace. possible?
Comments
Post a Comment