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

Load untrusted Visual Studio extension only when environment variable found

Scenario: a locked-down (i.e. unmodifiable by non-admin users) Visual Studio 2013 (could be any edition from Shell to Ultimate) install should conditionally load an untrusted (all user writable) VS Extension (PTVS). VS2013 is built atop .NET 4.5.1…
Tony Delroy
  • 102,968
  • 15
  • 177
  • 252
0
votes
1 answer

Earlier Release of Visual Studio 2012 Extension

Is there anyway to downloangrade visual studio extensions. Visual Studio Extension keep the older version or not. if not where can i find the older version of extensions. i'm trying to downgrade VS10X Extension to 3.68 or 3.67 version Thanks
Gayan
  • 2,750
  • 5
  • 47
  • 88
0
votes
2 answers

TFS - VS Extension: Add work item to pending changes via API

I am currently working on a VS extension / add-in and I need to associate work items with the pending changes (without triggering a check-in). After searching for some hours I couldn't find a way to accomplish this via the API. The only way I found…
Maggi
  • 53
  • 7
0
votes
2 answers

Can multiple .vsix with VB/C# Diagnostic Analyzer/CodeFix/AutoUpdate cause performance issue?

I'm implementing a system that will implement code quality as part of in-house quality measures. I've structured the system in two possible ways of implementation as follows: Implementation 1: (Already implemented) An AutoUpdate extension…
Jerric Lyns John
  • 936
  • 10
  • 25
0
votes
0 answers

Advantage of using SideWaffle to create templates compared to writing a VSIX

I understand that SideWaffle provides a bunch of community-driven templates for web developers. What I don't get is whether there is an advantage to using SideWaffle for writing my own templates for corporate use. The instructions provided,…
crimbo
  • 10,308
  • 8
  • 51
  • 55
0
votes
0 answers

Does Visual Studio have the possibility to disable extensions, which was installed per-machine?

The "Disable" button is disabled for all per-machine extensions, on my side.
0
votes
1 answer

Handling standard commands in custom editor

I have created a Visual Studio extension that provider syntax highlighting by implementing IClassifierProvider. I would like to add additional features such as support for the standard Edit.CommentSelection and Edit.FormatDocument commands, but I…
Antoine Aubry
  • 12,203
  • 10
  • 45
  • 74
0
votes
0 answers

DispatcherTimer in Visual Studio extension fires only in Experimental instance of VS

I'm writing a VS 2013 extension using Editor Margin project template. I want it to update the margin's content every second. Here's the code, it works as expected in Experimental instance of VS, but not in the normal instance: internal class Margin:…
vorou
  • 1,869
  • 3
  • 18
  • 35
0
votes
1 answer

Installing VS Package from code

Is there an API that can be used from .NET code to install/uninstall a Visual Studio Package, for a specific VS version? The API would take as inputs: VSIX file path VS version (we'd like to have support for VS2012, VS2013 and further versions) a…
Patrick from NDepend team
  • 13,237
  • 6
  • 61
  • 92
0
votes
1 answer

How to notify the editor about document changes

I work on a custom project system and I have an issue with renaming items. The project system implementation is based on MPF and renaming items via the solution explorer worked more or less without any problems, but... When an item gets renamed, I…
Matze
  • 5,100
  • 6
  • 46
  • 69
0
votes
1 answer

VSPackgae VSIX throws exception

I developed a VSpackage and tried to install the VSIX file on my VS. When I tried to open the extension - Tools-> Other Window - My Extension, I got a message box saying An exception has been thrown by the target of invocation Note: this is the…
Yogevnn
  • 1,430
  • 2
  • 18
  • 37
0
votes
0 answers

What is the best way to deploy a Template project in C#?

Heyy all =) We create a custom project template in C# following This topic to force all developers to develop uniformly, all inherit from the same class and receive the same development tools we developed in four separate DLLs and all have the…
oCcSking
  • 888
  • 21
  • 43
0
votes
1 answer

Same COMExceptions thrown by Visual Studio for different actions?

Background: Within my VSPackage I have process.Attach() instruction. I also have UAC (User Account Control Settings) set to default level: Use cases: When I run sample application under admin privileges: and then attach to such process using my…
jwaliszko
  • 16,942
  • 22
  • 92
  • 158
0
votes
1 answer

Get Roslyn samples to work

I am using Visual Studio 2013 SP1. After installing Roslyn I wanted to play with the samples. In the samples folder there is a project called MakeConstCS. So I hit F5, the experimental VS env is loaded. Then I create a new project and boom. Normal…
mynkow
  • 4,408
  • 4
  • 38
  • 65
0
votes
1 answer

Embedding IronPython's stdlib in VS extension

I'm currently writing a Visual Studio extension, which provides scripting capabilities. I'm using IronPython (the newest one), but I have some problems with Python's standard libraries. As I understand, all necessary files reside in the
Spook
  • 25,318
  • 18
  • 90
  • 167