bwoogie
bwoogie

Reputation: 4427

ASP.Net Core App Output in a Console Window?

Before I upgraded to VS 2019 (99% sure that's the only thing that changed) my ASP.net Core app ran in it's own console window. Now, it only outputs to the output window of VS.

How can I make my app open it's own window once again?

enter image description here

Upvotes: 2

Views: 1922

Answers (1)

Shawn Zhang
Shawn Zhang

Reputation: 106

As @Valuator said, inside your dropdown menu which you can switch to use your project name as debugger Emulator. Start debugging a default console will pop up.

enter image description here

Upvotes: 8

Related Questions