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

Obtain code window information based on cursor position using visual studio extension

Is there a way to obtain code window information based on cursor position using visual studio extension. To be more clear: If the cursor placed at line 10 in code window. Is there a way to obtain Line Number using visual studio extensions Code…
shishi
  • 107
  • 1
  • 2
  • 8
0
votes
1 answer

VSIX LanguageService FindToolWindow(...) returns null

I have two VSIX packages (VS2010 SDK), one containing a LanguageService and one the ProjectPackage (based on Managed Package Framework for Projects) for my language. Now I need to establish some sort of communication channel where the…
BennyBarns
  • 624
  • 5
  • 12
0
votes
2 answers

Visual Studio 2012 multiple project template with inter-dependencies

I'm in the process of creating a MVC starterkit for work and I'm having problems creating a multi-project template that doesn't require massive manual modification after creation. What I have is 4 projects that have some dependencies on each…
peter3
  • 1,074
  • 13
  • 22
0
votes
1 answer

Copy dll.config to a VSIX

Is it possible to copy dll.config of a project that represents a Visual Studio 2012 extension to a vsix so that it been copied to a folder when installed into VS?
0
votes
0 answers

Visual Studio Experimental Instance loading too slow?

I am working on an new visual studio extension and when testing I'm using a vsix project to run the experimental instance, however this takes about 5 minutes just to boot up. I have resharper and devexpress installed on my development instance of…
Donald N. Mafa
  • 5,131
  • 10
  • 39
  • 56
0
votes
1 answer

XamlParseException while creatng VSIX of DLL with embedded XAML files & image

I want to create VSIX package of an SDK. SDK has two XAML page, one image & DLL. The VSIX project architecture is given below. When I try to use that I am getting XamlParseException. Can you solve this problem ? Please don't give me any links. I…
Farhan Ghumra
  • 15,180
  • 6
  • 50
  • 115
0
votes
1 answer

Open xaml window, lock Visual Studio UI

I am building a Visual Studio Extension (2012 VSIX) What I want to do is: Open a XAML Window, bring it to the front. And "lock" Visual Studio, so you have to close the window before you can accomplish something els. For example when you are right…
Andreas Gustafsson
  • 321
  • 3
  • 5
  • 16
0
votes
1 answer

vsix opens visual studio

I seem to have got my system into a bit of a pickle with respect to Visual Studio extensions. Normally I would use Nuget. When an extension is not on Nuget, I'd download the vsix file and double-click on it to start the installation process. But…
onefootswill
  • 3,707
  • 6
  • 47
  • 101
0
votes
1 answer

How to include templates into VSIX package

I am developing a package for VS2012 and what I have there is: A custom project template and a set of custom item templates: Templates\Items\MyFirstItem (and more items there), Templates\Projects\MyProject Each template item contains .vstemplate…
Alexey Raga
  • 7,457
  • 1
  • 31
  • 40
0
votes
1 answer

How to make custom DatabaseSchemaProvider compatible with Visual Studio 2012?

I have built a custom DatabaseSchemaProvider deployed using a VSIX package. Under VS2010 and VSTSDB/10 it works great and is used for supporting our custom database language infrastructure in combination with extending the stock…
0
votes
1 answer

How to register mouse hover event over Visual Studio menu item?

I'm writing VSIX plugin. I've created an icon on Visual Studio standard toolbar. My custom command is attached to it: var mcs = GetService(typeof(IMenuCommandService)) as OleMenuCommandService; var commandId = new CommandID(GuidList.guidSthCmdSet,…
jwaliszko
  • 16,942
  • 22
  • 92
  • 158
0
votes
1 answer

Issues in creating custom multi project MVC 4 web application template vs2012

I am working on custom multi solution project structure having 1. 4 class library projects 2. One MVC 4 Web application. I have built multi solution structure into VSIX package.Till here everything is fine. Upon VSIX installation,I can see my multi…
0
votes
1 answer

Visual Studio extension menu button event not fireing

I have a project which has recently been converted from studio 2008 to 2010. It makes significant use of DSL. I used the DslProjectsMigrationTool that comes with the SDK. While much of the functionality is working I have a few problems with menus. I…
0
votes
0 answers

Why is the default VSIX installation directory not in the default allowed VS locations?

As mentioned in other posts, by default VSIX extensions will install to the following directory matches and this cannot be changed: %VSAPPDATA%\Extensions\ My question is: If that is the default location and is known, why are these locations not in…
WhiteWaterCoder
  • 119
  • 2
  • 7
0
votes
1 answer

Is it possible to develop extensions for visual studio 2012 using free tools?

I would like to make a template for F# lib + XNA 4.0 + Xbox360 for visual studio 2012. All I have is Visual Studio 2012 Express Edition for Web. When I try to install the Visual Studio 2012 SDK, it stops after reporting that it requires Visual…
Joh
  • 2,380
  • 20
  • 31