Tagged Questions
A VSIX package is a .vsix file that contains one or more Visual Studio extensions (VS2010 onwards).
6
votes
1answer
304 views
Deploying VSIX using MSI installer
Can anyony help me in "How to install VSIX using MSI installer".
For msi installer I'm using visual studio Installer setup project.
When I use VSIX with extension manager it works fine.
I want to ...
5
votes
2answers
752 views
How do I: Visual Studio Syntax Highlighting Extension
I want to develop an extension for VS2010 that will allow me make some additional features to syntax-highlighting.
I installed the SDK, how do I start from?
Please give a little snippet (or a link ...
4
votes
1answer
192 views
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 ...
4
votes
3answers
324 views
What kind of add-in / extension for VS 2010 should I create?
I have managed to develop an extension for visual studio "Update web reference" action in form of a simple dll that takes care for some sharing of classes between different projects etc. Everything ...
3
votes
1answer
319 views
How do I extend the project properties screen in Visual Studio?
When u view a project properties in Visual Studio u get a number of tabs.
The standard ones are "Application", "Build", "Build Events" etc.
It is also possible to add custom tabs. For example view ...
3
votes
2answers
728 views
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 ...
3
votes
2answers
218 views
HWnd of Visual Studio 2010
Is there a way to get the HWnd pointer to the top window of Visual Studio 2010 from a VSIX extension? (I would like to change the title of the window).
3
votes
3answers
509 views
VSIX: Getting DTE object
My Visual Studio package requires the use of an EnvDTE.DTE variable, but it always gets back as null. After reading up on many hacks, all of them say to use the OnShellPropertyChange() method ...
3
votes
1answer
305 views
How to deploy an MSBuild custom Task using MEF?
I have a number of custom Item and Project Templates for Visual Studio 2010.
I have build a VSIX Package that can be used to deploy these extensions to multiple developer's machines.
I am now ...
3
votes
1answer
165 views
Definitive list of service providers in Visual Studio 2010?
VS2010 has made it easy to write extensions via MEF exports and imports. However, if you want to do anything useful you have to know what service provider(s) you need to implement your super awesoem ...
2
votes
0answers
37 views
How to obtain the absolute position of text cursor in Visual Studio 2010 extension
I've developed an IntelliSense-like Dialog, which should appear on a specific key-stroke. (My project is a VS-Package, my dialog will be opened as a command)
The problem is, I don't know how to ...
2
votes
1answer
67 views
Making tool window show automatically on VS load
In my Visual Studio extensibility project, I'm attempting to make my tool window visible upon launch after package installation.
The dotneteers describe a way of doing this that involves adding the ...
2
votes
1answer
71 views
How to distribute/deploy a Visual Studio Add-in
I created my own Add-in with Visual Studio 2010. This Add-in is loaded at the startup of Visual Studio and it adds an entry in the Tools menu. The action of the Add-in is executing by clicking on its ...
2
votes
1answer
75 views
Extend “Tools” window in Visual Studio
I'm looking how to inject my own page into VS2010 Tools->Options window in my open source project. ReSharper, VisualSVN and others are able to add their own page there and it seems like a natural ...
2
votes
1answer
85 views
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 ...
2
votes
1answer
306 views
Calling ServiceLocator.SetLocatorProvider for a new Castle Windsor container causes IServiceProvider conflict in a VSIX package
I have a basic vsix package project in VS 2010 and have a simple ServiceLocator deriving from Microsoft.Practices.ServiceLocation.ServiceLocatorImplBase that I am registering in the Initialize ...
2
votes
1answer
131 views
Add code to current editor window in visual studio package/extention
How do you add/remove code in the code editor from an extension?
For example:
I created an extension witch modifies the code from an incoming socket
The example uses ...
2
votes
1answer
117 views
VSix deployment fails- Is VS SDK required on target machine?
I have a vsix package that has been built and installed on my machine and works well. I tried a double click install on a machine that does not have the VS Sdk. When I click on the icon in the ...
2
votes
1answer
356 views
VSPackage: Modify toolbar button text/tooltip at runtime
I have been developing a Visual Studio extension as an Add-in for VS2008/2010. The new version now is to be done as a VSIX package for VS2010 only (as it has to be .NET 4 anyway), and I am having some ...
2
votes
0answers
105 views
How do I prevent IVsBuildPropertyStorage.SetItemAttribute from escaping special characters?
I am working on a Visual Studio 2010 extension and I want to add an attribute to an MSBuild Item, as follows:
<EmbeddedResource Include="SomeFile.xml">
...
2
votes
2answers
110 views
detecting activity in the visual studio editor
I would like to know if there is a programmatically hook into the visual studio editor, so that I can determine whether or not someone is typing in the editor.
Thanks!
2
votes
2answers
676 views
Deploying Custom Policy on TFS2010 using VSIX and PKGDEF
I'm having a hell of a time trying to get a custom policy to install on TFS2010 using VSIX.
I have the policy up and running and working fine on my development PC, I have written a value to the ...
2
votes
1answer
198 views
Unhandled exception in VS extension
I have tried creating a syntax highlighter for a custom file definition. I get an exception when its loaded. I have added the /log parameter to devenv to get a log.
335 ERROR System.Exception: ...
2
votes
2answers
888 views
Visual Studio 2010 Extension Manager crashes
After installing a bunch of extensions to try out I restarted VS 2010 and it started crashing. Unfortunately, it consistently crashes when opening Tools | Extension Manager. Any ideas how to fix and ...
1
vote
1answer
15 views
Find where in document user clicked in Visual Studio Extension Context Menu
I want to be able to find where the user clicked in the document to bring up the right click context menu. Basically i want to be able to see the exact position of the cursor under the click.
I am ...
1
vote
1answer
29 views
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 ...
1
vote
2answers
63 views
Create Visual Studio 2010 extension to generate compiler warning
I want to create an extension to recognize specific comments in my code. I will use this to signal code smells by using the //@ comment prefix. One feature of this extension will be to generate ...
1
vote
1answer
37 views
What is the type of the objects returned by ISelectionContainer.GetObjects?
I'm writing an extension for VS2010, and my package implements IVsSelectionEvents to track the selection in the solution explorer:
public int OnSelectionChanged(
IVsHierarchy pHierOld,
...
1
vote
0answers
84 views
Adding a property page to project properties without implementing a project subtype
I'm developing a Visual Studio 2010 package. My package needs to add a new tab to the project properties.
All the examples that I could find on adding new tabs add the tabs by implementing project ...
1
vote
2answers
137 views
A nasty COM interop problem in VSIX
For some time now, I've observed an intermittent COM problem in my VSIX package for Visual Studio 2010. Attempting to subscribe to one of the IDE's COM-based event sinks randomly throws the following ...
1
vote
2answers
137 views
How can I automatically enable a VSIX extension, when installing?
I've created a VSIX package that I install via a WIX-generated MSI.
However, when I install it, and look at it in VS2010, in the Tools > Extension Manager menu, it is [Disabled] and I need to enable ...
1
vote
2answers
201 views
How can I install a VSIX package automatically, with WIX?
I've got a WIX installation project for my application. As part of my solution I have a VSIX extension, that I want to install on the customer's Visual Studio.
What I don't know, is how to get WIX to ...
1
vote
1answer
34 views
Deleting an extension which has no means to be uninstalled
I have an extension installed in VS 2010 but there is no option to uninstall it from extension manager or add/remove programs (if it was in an msi, can't remember). Add-in manager gives me the option ...
1
vote
2answers
106 views
How to implement configuration data for a vsix extension in Visual Studio 2010?
I'm currently implementing a vsix extension tool window which will soon need a database connection string for querying some data to display to the developer in the tool window. I'd like to make this ...
1
vote
1answer
192 views
How do I change the icon for a menu command in Visual Studio Extension?
I have published a Visual Studio 2010 extension called Duplicate Selection which is primarily invoked via the hotkey. However it also has a menu item under the Edit menu. This all works fine, but I ...
1
vote
1answer
90 views
Someone to explain the mechanics for DSL language creation “in plain english”
Basically the problem is that I'm starting doing somme development of Visual Studio 2010 extensions and language definitions are rather complex, so anyone giving a small intro and pointing some good ...
1
vote
1answer
276 views
Why is “Successfully” installed Multi-Project Template for Visual Studio 2010 not appearing anywhere?
I created a multi-project template using the example from vsix.codeplex.com
When I hit run, the extension is installed and works in the Experimental Instance of Visual Studio 2010.
When I try to ...
1
vote
1answer
157 views
VSX getting the selected file and using IVsSingleFileGenerator
I am trying to add several new functions to a package i developed for our company. One of these functions is to create a new file based on the file selected in the solution explorer and the menu ...
1
vote
0answers
344 views
VSPackage for VS2010 throws exception, missing System.Windows.Interactivity?
I have a VSPackage project for the VS 2010 SDK. It references a WPF class library with a UserControl. This user control makes references to certain blend-related assemblies, such as ...
1
vote
1answer
258 views
Can I install binaries into the GAC via a VSIX installer?
I've got a hybrid installer which drops binaries on the target machine (WIX) as well as installs templates into Visual Studo (VSIX). The VSIX is stored as a binary in the installer and is installed ...
1
vote
1answer
70 views
Extending the extension manager
I want to extend the extension manager in Visual Studio 2010. I'd rather know if that is at all possible before I get into it, but am unable to find anything about it.
All the extensibility options ...
1
vote
1answer
447 views
Creating 32bpp BMP file for toolbar image strip?
I've got a 16 pixel high image that I've created in Paint.NET that I'd like to use in a Visual Studio toolbar.
My image is a .PDN file with multiple layers. Visual Studio requires a 32bpp BMP file. ...
0
votes
0answers
10 views
How to change vsix default installation location
I'm developing a Visual Studio extensibility project using VSIX. By default, the VSIX file will install the assemblies in one of the following folders:
...
0
votes
1answer
22 views
Download a VS 2010 extension for offline use
How can I download a VS 2010 extension (VSIX) for offline use in an internet-disconnected environment?
0
votes
1answer
52 views
Add local NuGet server to server list with .VSIX
I would like to provide a Visual Studio extension (.VSIX) which adds a local NuGet server to the list of NuGet servers. Is this possible? Is there a generic way to change Visual Studio options by a ...
0
votes
1answer
85 views
Cannot install .Vsix package
I have troubles with .vsix installation.
If I launch the .vsix from the explorer, instead of suggesting me to install the package, I get the same ouput as Vsixintaller.exe /? (it displays the command ...
0
votes
1answer
33 views
Creating a VSIX probject for an asp.net template app
I have built an asp.net application project that I want to deploy as a VSIX project so other can install it and build asp.net applications from a template.
I have my solution, and in the solution is ...
0
votes
1answer
49 views
VSIX: get/add/remove references
How can I list references for a selected project? And add a new reference to a dll on disk?
0
votes
1answer
30 views
VSIX: execute code on VS startup
I'd like to call some code from VSIX extension when visual studio loads a solution, how do I do that? Package::Initialize is called only when user presses a button of my addin first time.
0
votes
2answers
53 views
Attach debugger onto another Visual Studio instance
I'm doing some visual studio extension development in Visual Studio 2010.
It would be useful to debug while developing so I have it configured to open another instance of VS when debugger for F5 ( ...