Brad Boyce
Brad Boyce

Reputation: 1258

how to use c++ from visual studio 2010 professional - I only see templates for c# and F#

I want to compile some open source C into a x64 dll for azure.

I have Visual Studio Professional, but only C# and F# are showing up in project templates, no C++.

How do I get C or C++ project templates to show up?

Upvotes: 2

Views: 1326

Answers (2)

Nasreddine
Nasreddine

Reputation: 37788

If you have installed support for C++ you'll see the templates under Other languages in the new project window (That if you didn't set your environment for C++ development during the first run)

VS2010 New Project window with VC++ installed

Otherwise you have to run VS2010 setup again and install VC++ support

enter image description here

Upvotes: 5

Adam Maras
Adam Maras

Reputation: 26843

You need to re-run the Visual Studio installer and modify the installed packages; select the Visual C++ packages for installation, and once the installer completes, they will be available.

Upvotes: 2

Related Questions