Reputation:
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
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