Updating VSIX files for Visual Studio 2012...sort of

VSIX files have version numbers and can be maintained via the menu Tools->Extensions and Updates 


Sometimes you encounter VSIX files


  1. Download VSIX installer
  2. rename VSIX to ZIP
  3. Extract extension.vsixmanifest from the ZIP and open in any editor. Change the SupportedProducts section to match the snippet below
  4. Update the file (drag into the zip and confirm overwrite)
  5. rename back to VSIX

<SupportedProducts>
   <VisualStudio Version="10.0">
    <Edition>Ultimate</Edition>
    <Edition>Premium</Edition>
    <Edition>Pro</Edition>
  </VisualStudio>
  <VisualStudio Version="11.0">
    <Edition>Ultimate</Edition>
    <Edition>Premium</Edition>
    <Edition>Pro</Edition>
  </VisualStudio>
</SupportedProducts>      
   

This basically works for any VSIX extension, but the extension's functionality might be either restricted or broken.

Kommentare

Beliebte Posts aus diesem Blog

Using AutoMapper for MVVM implementations

Deploying ClickOnce-applications in different environments without modifying the assembly identity

Preparing for and passing MCTS exam 70-536