Questions tagged [vsix]

A VSIX package is a .vsix file that contains one or more Visual Studio extensions (VS2010 onwards).

A VSIX package is a .vsix file that contains one or more Visual Studio extensions, together with the metadata that Extension Manager uses to classify and install the extensions.

That metadata is contained in the VSIX manifest and the [Content_Types].xml file. A VSIX package may also contain one or more Extension.vsixlangpack files to provide localized Setup text, and may contain additional VSIX packages to install dependencies.

Templates are provided in the Visual Studio SDK to enable the creation of vsix packages.

1223 questions
18
votes
1 answer

VSIX - Cannot load file or assembly of a referenced dll

My question is very similar to this one, only that the answer and work-around are not working for me. Also I am in Visual Studio 2012. I have a VSPackage which is referencing another project, which is dependent on other dlls. Everytime time I run…
Adam
  • 3,014
  • 5
  • 33
  • 59
17
votes
1 answer

Restrictions on installing extensions or add-ins in Visual Studio 2010 Express

I installed MSVC++ 2010 Express and trying to figure which extensions (vsix) are available to install. There are some extensions in the Extension Manager (section Online Gallery). All of them from Visual Studio Gallery. To be sure I installed some…
17
votes
3 answers

Update Private Gallery atom such that VS shows that an extension update is available

I'm using a Visual Studio Private Gallery to publish a VSIX internal to my company. My VSIX shows up in the "Online" section of "Extensions and Updates" in Visual Studio 2012 and I can install it from there: However, once it's installed, I can't…
16
votes
2 answers

How to 'extract' a .vsix file? (i.e. not install)

Title says it all: How can one 'extract' a .vsix file? I was following a tutorial and states this as step, but I didn't understand it and it wasn't easily googleable.
JBSnorro
  • 6,048
  • 3
  • 41
  • 62
16
votes
2 answers

Attaching a debugger to code running in another app domain programmatically

I am working on a Visual Studio extension and one of it's functions creates a new app domain and load an assembly into that app domain. Then it runs some functions in the app domain. What I'd like to do, and am not sure if it's possible, is have my…
Matt Burland
  • 44,552
  • 18
  • 99
  • 171
16
votes
9 answers

Visual Studio 2015 Update 2 breaks EF reverse code engineer vsix

After installing the latest Visual Studio 2015 Update 2, the EF power tools reverse code engineer option fails with the following error message. One or more errors occurred while processing template 'Entity.tt'. error : An exception was thrown while…
richardb
  • 943
  • 1
  • 10
  • 27
16
votes
6 answers

Detect the Visual Studio version inside a VSPackage

How can I check/detect which Visual Studio version is running under my VSPackage? I cannot get from the registry because the computer could have several versions installed, so I guess there is an API that is able to get it. Anybody knows how to get…
Daniel Peñalba
  • 30,507
  • 32
  • 137
  • 219
15
votes
8 answers

Unable to debug VSIX project

I'm trying to develop my first visual studio extensions project, I have VS10 SDK installed and was able to create a new project and can build it fine, however when I attempt to debug symbols are not loaded. I know that I can debug to VSIX project…
Rubans
  • 4,188
  • 6
  • 40
  • 58
15
votes
3 answers

How to disable Visual Studio extension automatic updates in an unattended mode?

I can disable automatic extension update for a particular extension via the Extensions and Updates manager in Visual Studio. But what should I do when I want to disable automatic updates for extension FOO on all computers of my team in an unattended…
bahrep
  • 29,961
  • 12
  • 103
  • 150
15
votes
1 answer

Multi Project / Solution Templates for Visual Studio 2012 with VSIX Installer and Nuget Packages

I would like to have a multi-project template that will create sub projects, and will install the nuget dependencies as well as have a vsix installer that will install this template. Problems with methods already tried Multi project template without…
14
votes
1 answer

Access current code pane in Visual Studio Extension

Im writing a visual studio (2010) extension with a right click menu whilst in a code view. I want to be able to examine the current code from my menu item event handler but havent been able to find somewhere in the object model to do this. How do i…
undefined
  • 33,537
  • 22
  • 129
  • 198
14
votes
5 answers

LibGit2Sharp DllNotFoundException: Unable to load DLL 'git2-106a5f2'

I am working on a vsix project where I need to get information about a local git directory. I am following this article. When I am using LibGit2Sharp library, I am getting an exception as described in following image and error:- How can I resolve…
Tanmay Bairagi
  • 564
  • 5
  • 25
13
votes
3 answers

Deploy assembly containing IWizard for project template with VSIX

I have created an extension for VS 2010 that deploys a project template. The project template uses a custom wizard (in a specific assembly) that is called when I create a new project based on this template. I want to package the assembly containing…
Johann Blais
  • 9,389
  • 6
  • 45
  • 65
13
votes
1 answer

Colors in Visual Studio Extension

I'm developing a VS extension and I want to achieve that my UI will use colors (font, background etc.) depending on the selected VS-color-scheme. What is the best way to do this. Can I bind against some static ressources in my WPF?
Alexander Schmidt
  • 5,631
  • 4
  • 39
  • 79
13
votes
3 answers

Strongly naming a 3rd party assembly - Could not load file or assembly

I am writing a Visual Studio 2012 extension, for internal use, which requires that all assemblies have a strong name. I am dependent on RestSharp (and a few other dlls), and since it is not strongly named, I am adding a strong name to it by…
Adam
  • 3,014
  • 5
  • 33
  • 59
1
2
3
81 82