how to fix setting subsystem to console in visual studio?

Viewed 5528

I want to pause console from exiting. so I'have set subsystem to console every time I make new project. I sick of this process. is there any way to fix subsystem to console when I make new project?

3 Answers

I had the same problem. The only way to resolve this issue was to create a custom project template in Visual Studio. Refer this link on how to create a project template in Visual Studio

In Visual Studio go to Project -> Project Properties -> scroll down to linker - > sysyem. in the right pane where it says SubSystem change that to Console (/SUBSYSTEM:CONSOLE)

When you make projects, make an empty project. It is set to console by default.

Related