How To Add C++ Templates To Visual Studio For Mac

Using Visual Studio Code and Building and Debugging with C++ on Mac OS X Saturday, August 6th, 2016. By Michael Suodenjoki, August 2016. I wanted to play with and test Visual Studio Code's (VSCode) features for doing C++ development on the Mac platform.

And install the template by saving the.zip file to your Visual Studio 2017 project templates directory. The Visual Studio 2017 project templates directory is typically located at the following url. Replace all texts of “Xamarin Studio” with “Visual Studio for Mac”, and you should be able to get Addin Maker (>=1.3.4) installed and a sample add-in created. Note that MonoDevelop.Addins NuGet package should be upgraded to 0.3.9 and above, so that debugging add-ins can be enabled. I updated the Template creator for VSForMac 7.0.1. You should see 'MonoDevelop.MonoGame.Templates' v0.3 now in the Gallery. It should fix the issue reported earlier, the addin was missing some template files. But it will still have bugs no doubt since its still a work in progress. I really need to commit the code so others can contribute.

Active10 months ago

I just downloaded a VSIX file from the Visual Studio Gallery.

How do I install it in Visual Studio?

slhck

Adding Templates To Visual Studio 2010

171k49 gold badges476 silver badges492 bronze badges
KdgDevKdgDev
2,46316 gold badges44 silver badges66 bronze badges

8 Answers

VSIX is a Visual Studio extension installer. You must have Visual Studio 2010 or newer in order to install them, but you should be able to install it by double-clicking the .vsix file. Alternatively you should be able to install it from within the VS Extension Manager (Tools->Extension Manger)

See more about VSIX files at Quan To's Visual Studio Extensibility blog

heavydheavyd
52.6k13 gold badges126 silver badges158 bronze badges

The above answers didn't help me; I couldn't install it through the extension manager and there was not default application for .vsix. However, I needed to open it (right click >Open with...) with Microsoft Visual Studio Version Selector and it worked.

Small update:For VS 2013, you need the corresponding version of NuGet: http://visualstudiogallery.msdn.microsoft.com/4ec1526c-4a8c-4a84-b702-b21a8f5293ca.Otherwise, the version selecter will tell you it's already installed on all fitting versions.

Cedric ReichenbachCedric Reichenbach

Microsoft Visual Studio For Mac

To summarise, there are three options:

  1. Install via Extension Manager (Tools/Options)
  2. Install via Visual Studio Gallery.com (download and open directly or save then double-click)
  3. Install via 'xcopy' into %localappdata%MicrosoftVisualStudio10.0Extensions
jnm2
1791 gold badge4 silver badges19 bronze badges
How To Add C++ Templates To Visual Studio For MacBenjol

C++ Visual Studio Mac

Benjol
1,2281 gold badge19 silver badges35 bronze badges

If all the above options fail, try installing it from the command-line.Here's how (on StackOverflow):

VSIXInstaller.exe /quiet some_extension.vsix

You can find VSIXInstaller here (on your local PC - depending on the Visual Studio version replace 14.0 by the version you're using):

C:Program Files (x86)Microsoft Visual Studio 14.0Common7IDE

To display the installer dialog(s), remove the /quiet option.

Note:

Microsoft
  • To uninstall a VSIX extension, you need to know its vsixID (here is described how to get it), then you can use

    VSIXInstaller.exe /uninstall:vsixID

  • To install/uninstall VSIX files for a specific Visual Studio version, use the switches /skuName:name and /skuVersion:version; you can see all options of the command line tool if you type VSIXInstaller.exe /? in the developer command prompt.

MattMatt

Did you know that the VSIX is nothing more than a ZIP file. After double clicking on it, the VS selector prompts you for each installed version of Visual Studio to install it too. This is where vs picks an arbitrary folder name and unpacks the content to the %AppData%LocalMicrosoftVisualStudio##Extensions folder. So Benjol was partially correct save for unpacking the files from the VXIS(again which is a Zip).

Rashad RiveraRashad Rivera

VSIXInstallerinC:Program Files (x86)Microsoft Visual StudioInstallerresourcesappServiceHubServicesMicrosoft.VisualStudio.Setup.Service

tangtang

Visual Studio Community For Mac

I think you just reload Visual Studio after downloading the VSIX. During the launch Visual Studio looks for the VSIX file and incorporatesall the required changes.

bla-bla

Visual Studio Professional For Mac

Here are the instructions for Visual Studio Code.1 step

second step

Visual Studio On A Mac

Balaban MarioBalaban Mario

How To Add Templates To Visual Studio

Not the answer you're looking for? Browse other questions tagged windowsvisual-studio-2010visual-studio or ask your own question.