Home > OS >  How to disable hide console on start debugging .net 6 code?
How to disable hide console on start debugging .net 6 code?

Time:10-16

Tools → Options → Debugging → "Automatically close the console" is not working. Is there any other settings?

CodePudding user response:

The option is "Automatically close the console when debugging stops". But you want to hide console when start debugging, you can try these method:

1.Change Output type to Windows Application in properties:

enter image description here

2.Add this enter image description here

You can get more information from here.

  • Related