Open cbn-targit opened 1 month ago
Note that i'm developing ASP.NET Core application, if that has anything to do with it
Unfortunately, that is by design due to how VS Code scrapes the output window to determine if the webpage is ready to be opened.
Okay, so i seems as if there is nothing to be done? Can i at least somehow disable all "debug" output, and have just my logs show up?
If you just want your program output, you will need to go to the vscode settings and disable the following:
csharp.debug.logging.exceptions - Flag to determine whether exception messages should be logged to the output window. This option defaults to true.
csharp.debug.logging.moduleLoad - Flag to determine whether module load events should be logged to the output window. This option defaults to true.
csharp.debug.logging.diagnosticsLog - Various settings used to diagnose issues with the debugger.
csharp.debug.logging.elapsedTiming - If true, engine logging includes adapterElapsedTime and engineElapsedTime properties to indicate the amount of time, in microseconds, that a request took. This option defaults to false.
csharp.debug.logging.threadExit - Controls if a message is logged when a thread in the target process exits. This option defaults to false.
csharp.debug.logging.processExit - Controls if a message is logged when the target process exits, or debugging is stopped. This option defaults to true.
See https://code.visualstudio.com/docs/csharp/debugging#_user-settings
Describe the Issue
No matter what value i set for csharp.debug.console, it always launches using internalConsole. I have tried removing all other extensions than those needed for C# Dev Kit, but to no avail
Steps To Reproduce
No response
Expected Behavior
For vscode to respect my settings
Environment Information