fernandoescolar / vscode-solution-explorer

This is a Visual Studio Code extension that provides a (.sln) Visual Studio Solution explorer panel..
MIT License
348 stars 73 forks source link

Prevent opening Console / Output window on every log #265

Closed BachiMjavanadze closed 1 year ago

BachiMjavanadze commented 1 year ago

Please add ability to cancel opening console / Terminal on every Project or Solution creating, also cancel it on making references between projects:

image

My setting:

"vssolution.outputChannelMode": "none"

does not helps. Please add one more setting, something like:

"vssolution.openConcoleForInfo": "never"

BachiMjavanadze commented 1 year ago

may be it is a good idea to add 'onError' option too:

"vssolution.openConcoleForInfo": "onError"

fernandoescolar commented 1 year ago

There is a problem with the terminal. I can sendText but I cannot get the output :(

BachiMjavanadze commented 1 year ago

@fernandoescolar I'm using Live Sass Compiler with this setting:

"liveSassCompile.settings.showOutputWindowOn": "Error"

and console is revealing only on errors. So technically it is possible.

fernandoescolar commented 1 year ago

That extension only uses the OutputChannel. In the output panel you can create your custom channel and write what you want. vscode-solution-explorer also uses the terminal to run "dotnet" commands. In the terminal you can only write commands... The method is sendText(..): void :(