Reputation: 1258
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
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)
Otherwise you have to run VS2010 setup again and install VC++ support
Upvotes: 5
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