Open ThatRendle opened 3 years ago
Following on from #9038, which appears to be done in 5.0.
It would be great to be able to specify e.g. browserCommand to control which browser is launched, with command line arguments.
browserCommand
Particularly when working with Blazor, which requires a bunch of arguments to be passed to Edge, Chrome etc to enable the Dev Tools experience, e.g.
chrome --remote-debugging-port=9222 --user-data-dir="C:\Users\mark\AppData\Local\Temp\blazor-chrome-debug" https://localhost:5001/
Currently when working with Blazor, dotnet run launches the system default browser, then you hit Alt+Shift+D to open the developer tools, then you get the page telling you how to re-launch the browser from Win+R, and it's a drag.
dotnet run
Alt+Shift+D
Win+R
I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label.
@vijayrkn
https://github.com/dotnet/sdk/issues/9038#issuecomment-795886812
Following on from #9038, which appears to be done in 5.0.
It would be great to be able to specify e.g.
browserCommand
to control which browser is launched, with command line arguments.Particularly when working with Blazor, which requires a bunch of arguments to be passed to Edge, Chrome etc to enable the Dev Tools experience, e.g.
Currently when working with Blazor,
dotnet run
launches the system default browser, then you hitAlt+Shift+D
to open the developer tools, then you get the page telling you how to re-launch the browser fromWin+R
, and it's a drag.