Building C++ Projects in Visual Studio

In the Visual Studio integrated development environment (IDE), there are several ways to build an entire solution or just one project in it. You can also modify build settings and specify custom build steps to make your development process more efficient.

To build a solution that's open in Visual Studio and selected in Solution Explorer, you can:

  • On the menu bar, choose Build, Build Solution.

  • Or, in Solution Explorer, open the shortcut menu for the solution and then choose Build Solution.

  • Or, press F7. (This is the default keyboard shortcut for the C/C++ development settings.)

  • Or, in the Command Window (on the menu bar, choose View, Other Windows, Command Window), enter Build.BuildSolution.

  • Or, in the Quick Launch box, enter build build solution.

To build a project that's selected in Solution Explorer, you can:

  • On the menu bar, choose Build, Build <Project Name>.

  • Or, in Solution Explorer, open the shortcut menu for the project and then choose Build.

  • Or, in the Command Window (on the menu bar, choose View, Other Windows, Command Window), enter Build.BuildOnlyProject.

  • Or, in the Quick Launch box, enter build project only build only <project name>.

When you build a Visual C++ application in Visual Studio, you can modify many of the build's settings in the project's Property Pages dialog box. For information about how to set project properties, see Working with Project Properties.

For an example about how to use the IDE to create, build, and debug a C++ project, see Walkthrough: Explore the Visual Studio IDE with C++. For an example about how to use the IDE to build a C++/CLR project, see Walkthrough: Compiling a C++ Program that Targets the CLR in Visual Studio. For an example about how to use the IDE to create a Windows Runtime app, see Create your first Windows Runtime app using C++.

To read more about how to build, modify build settings, and specify custom build steps, see the following articles.

In This Section

See Also

Other Resources

Roadmap for Windows Store apps using C++