You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We noticed the launchBrowser attribute in the launch.json as this extension has it's own logic to launch browsers.
For future scenarios we recommend using the VS Code API vscode.open that can open a URL in the browser. It works on all platforms, so when the C# extension can invoke this command, then this should work.
The text was updated successfully, but these errors were encountered:
@auchenberg We launch the browser from the debugger, where we have no access to any VS Code API. To do this we will need a new debug protocol message for a debug adapter to request a browser to be opened.
Hi Kenneth from the VS Code team here,
We noticed the
launchBrowser
attribute in the launch.json as this extension has it's own logic to launch browsers.For future scenarios we recommend using the VS Code API
vscode.open
that can open a URL in the browser. It works on all platforms, so when the C# extension can invoke this command, then this should work.The text was updated successfully, but these errors were encountered: