I've got a strange one here that I can't seem to figure out. It just started last week. When I debug a console app in VS 2019 it does not launch the console window. I can set a breakpoint inside Main() and it will break. But no console.
I even created a brand new Hello World project and that does not work.
- VS 2019 Build 16.5.4 (updated today from 16.5.1 but that did not help)
- Windows 10 x64 Build 18363
- .NET Framework 4.7.2 (for the test app below but I have seen it in all versions I've tried).
Even this does not work:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp1 { class Program { static void Main(string[] args) { Console.WriteLine ("Hello World"); Console.ReadLine(); } } }