Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2015: Can't create a new empty project c++

I recently got the new version of Visual Studio and I can't seem to find how to create an empty project for C++. The options seem to be only C# and Basic.

enter image description here

like image 217
Crowning Avatar asked Jul 22 '15 08:07

Crowning


People also ask

How do I create a new project in Visual Studio 2015?

Open Visual Studio. On the start window, select Create a new project. On the Create a new project page, enter blank solution into the search box, select the Blank Solution template, and then select Next.

How do I create an empty project in Visual Studio?

On the menu bar, select File > New > Project. On the Create a new project page, type solution into the search box. Select the Blank Solution template, and then click Next. Enter Name and Location values for your solution, and then select Create.

How do I make a blank C++ project in Visual Studio?

In Visual Studio, open the File menu and choose New > Project to open the New Project dialog. In the New Project dialog, select Installed > Visual C++ if it isn't selected already, and then choose the Empty Project template. In the Name field, enter HelloWorld. Choose OK to create the project.


1 Answers

The default (typical) installation of Visual Studio 2015 no longer contains the C++ compiler and tools. This was a very popular ask from the community as many developers do not want the footprint C++ brings.

If you go and try to uninstall Visual Studio 2015, the installer screen will pop up and you'll see a button named "Modify". This will change your current installation. Do a custom install and pick the C++ features / libraries that you require.

As far as I know, most editions have C++ support, including Express for Windows, Express for Desktop and the popular Community edition.

like image 155
Bogdan Gavril MSFT Avatar answered Oct 01 '22 17:10

Bogdan Gavril MSFT