How to define default project setting in a visual studio solution

c++, visual-studio-2012

Solution

You can create a project template for your specific settings and import that into Visual Studio:

See:

- http://msdn.microsoft.com/en-us/library/xkh1wxd8(v=vs.110).aspx

Problem

I have a solution that has several projects all related to each other. When I create a new project, I need to go into its setting and change default setting (for example additional include directory, additional lib directory, using Unicode and ...) Is there a way that I can create a configuration in solution that all projects using that setting if I am not setting that property for the project (for example type of project, if it is MFC or console or library )

Original source