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
0
votes
1 answer

Visual Studio 2012 SDK installation

I have ultimate version of visual studio 2012 today I downloaded and installed Visual Studio 2012 SDK which suppose to add project templates under Visual studio new project dialog, but there is nothing displayed the only project template I see under…
Rati_Ge
  • 1,262
  • 2
  • 15
  • 37
0
votes
0 answers

Deploy vsix referenced dlls

I have a visual studio extension project which uses some external library. More over that library uses another library which must be placed in the same folder with the exe file. (in our case it is Visual Studio folder. Folder where Visual Studio was…
0
votes
0 answers

VSIX: Added item doesn't get copied in vsix installation folder

I need to run a perl script from within vsix. I have created a vsix package and added existing item 'test.pl' I moved it under 'Resource' folder and also changed its property to 'Embedded Resource' and 'Do not copy'. I access this .pl in the code…
Flami
  • 507
  • 5
  • 8
0
votes
1 answer

How to add a "Add as link file" in the ProjectTemplate1.vstemplate?

I have added a class file (LocalInitializer.cs) as "Add as link file" in my Project under a folder call say "Initializer". What will I do in the ProjectTemplate1.vstemplate file to add it. The current structure is
user1323981
0
votes
1 answer

Do not load VS packages under the experimental instance

I have installed a package in VS 2010 using the regpkg.exe utility. When I launch the Experimental instance using the switch /rootsuffix Exp the package is loaded. I would like to disable the package only for the experimental instance Even if I…
Daniel Peñalba
  • 30,507
  • 32
  • 137
  • 219
0
votes
1 answer

Check out file from VS2010 VsPackage

I have a VS2010 VsPackage that implements an editor for a certain XML based file format. Currently I'm displaying an error in case the file is read-only. I would like to check if the file is under source code control before editing and offer to…
MvdD
  • 22,082
  • 8
  • 65
  • 93
0
votes
1 answer

Is there a way to add a custom file filter to Visual Studio's open file dialog through a VSIX extension?

I'm implementing a set of MEF extensions through a VSIX extension project. This is for a small internal DSL. I can get syntax highlighting working just fine. What I would like to do is to be able to have an associated file filter entry in the Open…
Kelsie
  • 1,000
  • 1
  • 9
  • 21
-1
votes
3 answers

How to open a tfs work item inside Visual Studio 2010 inside a Extension?

I'm developing a VS 2010 Extension, and I would like to know if there is a way to open a Work Item in the Team Explorer Work Item Editor ? What code should I call to accomplish this? I'm clueless.
Conrad Clark
  • 4,533
  • 5
  • 45
  • 70
-1
votes
1 answer

VS2019 addin/extensions How do enable/disable menu item

I am learning how to write VS2019 addin/extensions and searching for some good resource on specific questions like... I am looking for some answers like, How to i enable my menu item, only when a specific type of project is open or selected in a…
Neha
  • 319
  • 1
  • 7
-1
votes
1 answer

How to run current project by visual studio extension

I have a console application which generates json. I need to execute this application by using a Visual Studio extension (Vsix). For that I created a VSix project with command. When I click run command, I need to run the current project. I have no…
user12465572
-1
votes
1 answer

VSIX Installer failed for QT

I'm trying to install Qt Visual Studio Tools in VS-17 (version 15.7.6) but it gives me the following error message along the log file. Log file: 7/21/2020 2:37:35 PM - Microsoft VSIX Installer 7/21/2020 2:37:35 PM -…
Nouman Tajik
  • 433
  • 1
  • 5
  • 18
-1
votes
1 answer

Visual Studio Extension Mouse Button events not working

I have a Visual Studio extension with a (async) tool window. The tool window has an UserControl, and the control has an Image which I use WriteableBitmap as a source. Basically, I am trying to use a graphics API (Vulkan) on a tool window. Basically,…
user2821630
  • 112
  • 1
  • 1
  • 10
-1
votes
1 answer

How to hide Framework dropdown in the wizard window in vsix extension

I am generating the .net core as output project but in the vsix wizard it shows the .net framework drop down which is misleading the user.How to hide this drodown? Do we need to add any property/setting in the below vsTemplate? My VsTemplate looks…
-1
votes
1 answer

Adding custom glyph of a break point in Visual Studio

I want to create a custom breakpoint type that will break for a duration then continue. I can mark a breakpoint as this new custom type with a command in its context. Is it possible to change the red glyph of the breakpoint to one that is blue or…
-1
votes
2 answers

Find dependencies of SDK-style projects

In a Visual Studio extension I need to iterate through all the projects in the loaded solution and find all Dependencies (both NuGet packages as well as assemblies). The following code works fine for old non-SDK style projects but not for the new…
Santosh
  • 660
  • 7
  • 13
1 2 3
81
82