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
Open up user preferences and change Cshap->Debug->Console to be 'integratedTerminal'. If using a coreclr entry in launch.json, the same problem exists with "console": "integratedTerminal"
Start debugging
Expected behavior
When explicitly using the integrated terminal, that should always show up on top of the debug console
Actual behavior
The debug console seems to always appear on top
Work around
To work around this problem, add "internalConsoleOptions": "neverOpen" to launch.json
The text was updated successfully, but these errors were encountered:
Previously the C# extension would always set `internalConsoleOptions` (which controls if VS Code shows the debug console) to `openOnSessionStart`. The PR changes things so that we will use `neverOpen` if we are going to use the integrated terminal.
This resolves#6516
Steps to reproduce
coreclr
entry in launch.json, the same problem exists with"console": "integratedTerminal"
Expected behavior
When explicitly using the integrated terminal, that should always show up on top of the debug console
Actual behavior
The debug console seems to always appear on top
Work around
To work around this problem, add
"internalConsoleOptions": "neverOpen"
to launch.jsonThe text was updated successfully, but these errors were encountered: