Visual Studio Configuration

2

I installed Visual Studio to use Sfml, I configured and it worked correctly, but when I create another project and close the previous I have to configure everything again to use, libs, includes, etc.

How to configure in a general way for all new projects and not a project itself.

    
asked by anonymous 20.04.2017 / 16:19

1 answer

2

You can create a Project Template

From your project, which will be the template for the others, perform the following steps:

  • On the File menu, click Export Template. The Export Template wizard opens;
  • Click Project Template;
  • If you have more than one project in your current solution, select the projects you want to export to a template;
  • Click Next;
  • Enter a name for the template and description;
  • Select an icon and a preview image for your template if you wish;
  • Click Finish. Your project will be exported to a .zip file and placed in the specified output folder, and if selected, will be imported into Visual Studio.

When creating a new project, your template will be available to choose from, and all settings, screens, and codes will be part of this new project.

Important
Perform a first build to resolve all references. At first, they will be marked with an exclamation.

    
20.04.2017 / 16:50