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
2 answers

How to detect that Library code is executed within VS Addin or VS Package vsix

I use Addin in VS 2010 and VS Package (vsix) in VS 2012. Addin and VSPackage uses common libraries. I need detect if the library code (in execution time) is executed by Addin OR VSPackage. Now, I have this code, but always true for Addin AND…
Kiquenet
  • 14,494
  • 35
  • 148
  • 243
0
votes
0 answers

How to add applications to debug target list from VS Package

How to add applications to Debug Target list? My extension should automatically add specific processes to the list. When user selects one, the extension will override the behavior. Just as an example how it should look: when you create a Web…
Artiom
  • 7,694
  • 3
  • 38
  • 45
0
votes
0 answers

Background color of compartmentshape field

Can anybody tell me how to set the background color of a compartmentshape field programmaticaly? I couldn't find anything to that. Thx Manuel
Maniga
  • 43
  • 1
  • 7
0
votes
0 answers

Visual Studio Isolated Shell: Add Error to error tool window from another thread

I have one question about the ValidationContext in an Visual Studio 2013 Isolated Shell project. I use a compiler on another thread, and would like to add the validation errors to the error toolbox window of the visual studio shell by…
Maniga
  • 43
  • 1
  • 7
0
votes
1 answer

Canceling installation/unistallation doesnt always cancel the installation/uninstallation in WiX

I've created an MSI using WiX to install a Visual Studio Extension (VSIX). However, I found that if I press Cancel during the last few seconds of the installation/uninstallation, it is completely ignored and installation/uninstallation proceeds as…
Nithin Kamble
  • 45
  • 1
  • 5
0
votes
1 answer

Installed SQLite extension, can't find it in service reference dialog?

I installed the SQLite extension for Windows Phone 8 and I did check the Global checkbox for a global install. However, when I try to add a reference to it from my Windows Phone 8 project, I can't find it. I looked under Assemblies -> Extensions…
Robert Oschler
  • 14,153
  • 18
  • 94
  • 227
0
votes
1 answer

Creating Visual Studio extension package installer

I have created a Visual Studio extension that is compatible with Visual Studio versions 2005 - 2013. For VS2010 and later I've just uploaded the extension in vsix format to the gallery and to be honest I want to keep the comfortable vsix format for…
0
votes
1 answer

Add two project types in one VS extension

I've added new project type using this guide. Everything is Ok, I could create such projects. But when I am trying to add another one project type - I couldn't see it in new project types, there is only the first one. I've tried to use the first…
Seekeer
  • 1,344
  • 2
  • 18
  • 31
0
votes
1 answer

How do I Trace a Dsl/DslPackage at run-time (Visual Studio VS2012)

How do I trace a VS2012 DSL/DSL Package VSIX at run-time. I have an odd bug with an error message, "Value of 'null' is not valid for 'stream'" and I guess it's something to do with deserializing the XML written by the DSL. Although I can add…
jradxl
  • 535
  • 1
  • 4
  • 20
0
votes
1 answer

How to create a setup project using WiX to install two Visual Studio extensions

I need to create a setup project using WiX to deploy two Visual Studio Extensions(vsix). I create a project follow the steps that you can see in this blog: Creating WiX setup for VSIX. I can compile the project and generate the .msi file, but when I…
0
votes
1 answer

IPropertyPage does not show up in tabbed-view

I am implementing a custom language service for Visual Studio; the project node shall provide some configuration independent property pages (like Application-, Debug-, Build Events, ...) which are displayed in a tabbed view. The registration of…
0
votes
1 answer

How can I enable typescript compilation

I would like to add typescript files compilation in a VSIX project. I tried to add a typescript file inside the project, add code and save, but ths js file is not created. thanks, luca
Luca Morelli
  • 2,530
  • 3
  • 28
  • 45
0
votes
2 answers

Deploy a VSPackage to create a new project type using Setup Project

I create a new custom project type using a VSPackage project inheriting of MPF library (http://mpfproj11.codeplex.com/). As a result I obtain a .vsix but I need add this project type using a .msi. I'm using the Visual Studio 2010 Setup projet for…
0
votes
0 answers

Visual Studio extension - creating project type

I'm trying to create a new Visual Studio project type following the tutorial: http://msdn.microsoft.com/en-us/library/vstudio/cc512961.aspx Unfortunately I'm getting a strange exception stating that "Guid should contain 32 digits and 4 dashes". The…
kubal5003
  • 7,186
  • 8
  • 52
  • 90
0
votes
1 answer

Problems with publishing VSIX on Gallery

I want to publish an upate to my VSIX package to VS Gallery. I edit my source.extension.vsixmanifest and increase the version-number. Then I build and log in to gallery. There I click on "Edit" and then on "Change" in the Upload-Section. Then I…
Alexander Schmidt
  • 5,631
  • 4
  • 39
  • 79