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

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -