user4901669
user4901669

Reputation:

Visual Studio 2015 preventing an application from opening the console

I am making an application using Windows.Form in Visual Studio 2015, but I have a console popping up whenever I run the program. This is great for debugging, but how do I stop this from happening when I finish my program? I have looked at some similar questions, but they are all for different versions of Visual Studio.

Upvotes: 0

Views: 480

Answers (1)

George Chondrompilas
George Chondrompilas

Reputation: 3237

You can go to Project -> (Project Name) Properties... -> Application Tab and change the Output type from Console Application to Windows Application.

Upvotes: 1

Related Questions