Visual Studio eXtensibility (VSX) is the ability to develop extensions to Microsoft Visual Studio.

learn more… | top users | synonyms

1
vote
1answer
47 views

VS2012 Experimental hive's 11.0Exp_Config location

I've migrated my VS extension from VS2010 to 2012 today, and when debugging the extension via the experimental hive, it seems to be creating a new registry entry for the _Config directory, with new ...
1
vote
1answer
25 views

Is there a good getting started guide for implementing custom test types for VS2010 and VS2012?

I am searching for a getting started introduction about how to implement a custom test type for VS2010 and VS2012. When googling for this information I found an example on how to do it on VS2005 and ...
5
votes
1answer
323 views

AvalonDock (2.0) + MVVM + VSPackage = trouble?

I have a control that utilizes an AvalonDock (2.0) DockingManager control for displaying a set of documents managed by an underlying view model: <avalonDock:DockingManager ...
2
votes
1answer
79 views

VSIX package build failed without showing the reason (Visual Studio bug)

I have to enabled diagnostic mode of MSBuild project build output verbosity to see this: 1>Done executing task "EnableExtension" -- FAILED. (TaskId:81) 1>Done building target ...
28
votes
2answers
936 views

How to add a button to Visual Studio Intellisense

I would like to add a button to the top of the list of options returned by Visual Studio's IntelliSense. When the button is clicked, my custom code will be executed (which will, among other things, ...
2
votes
1answer
118 views

Displaying images or controls in Visual Studio source view

I'm working on a number-crunching app with some fairly (from my POV) complex math. My first thought was, Gee, it'd be really nice to be able to take a screen shot in Mathematica and include it ...
0
votes
1answer
36 views

How to get contents of Test Explorer window in Visual Studio programmatically

I am developing my first add-in for VS 2012. I need to programmatically find which test is selected by user from Test Explorer window. How do i do that? Any pointers and help is very much ...
0
votes
0answers
38 views

NullReferenceException on Package Wizard's integration tests

I used Visual Studio 2010 SP1 and the package wizard to generate unit tests for an extension. The unit tests pass but the integration test (unmodified) fails on the UIThreadInvoker.Invoke call with a ...
0
votes
2answers
45 views

how to get the selected connection node object of VS Server Explorer window DDEX

I'm adding some options for the Connection Node in the server explorer for my VS extension. For one of the menu options that I have added I need to get the connection string of the very selected ...
1
vote
0answers
37 views

VS2010 Extension for database projects

I'm trying to create a VS2010 extension (managed VSPackage) for SQL Server Database Projects. What I'd like to do is capture the "query executing" event from the Transact SQL editor window: And ...
0
votes
2answers
59 views

Highlighting code window text from Visual studio tool window using VSPackage

I'm kind off new to the Visual Studio Extensions. Is there a way to interact to code window from Visual Studio 2010 tool window. I have a Datagrid hosted on the VisualStudio tool window. DataGrid ...
0
votes
0answers
120 views

Add WCF Service reference programmatically to the project template

I am working on multi project solution template.I have a wizard class inheriting from IWizard Interface to display UI and collect names for project in the solution template from user. In the solution ...
0
votes
1answer
136 views

Programmatically create virtual directory on IIS for custom web appllication project template vs2010

I am working on multi project custom solution structure in VS2010. One of the projects is web application. I have a Wizard class inheriting from interface IWizard. In the UI form, users will enter the ...
0
votes
3answers
63 views

How to register key binding code on VSIX package installation

I'd like to add keyboard shortcut to Visual Studio package only once, during its installation. Basically I know how to do it from the package code, for example: var dte = ...
0
votes
2answers
61 views

How to get processes to which debugger was attached to during last debugging session

I'm trying to write Visual Studio package which allows mi attach to processes chosen in previous debugging session. Basically I know how to attach to processes: var dte = ...
1
vote
0answers
55 views

SolutionContext.ConfigurationName set returns E_FAIL

I have the following code in a custom project based on MPF for Projects - Visual Studio 2010: EnvDTE.Project dteProj = CurrentProject(); ...
0
votes
0answers
53 views

SolutionEvents Opened event isn't fired (vs extensibility)

I'm actually working on a vs2010 tool window (package), and I need to know when a solution has been opened. I looked at this post, seems like I do the same thing but the Opened event is never fired... ...
1
vote
1answer
166 views

VsTemplate: Usage of TemplateGroupID

No matter which ID from HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ VisualStudio \ 11.0 \ Projects \ I use, none of them works! When I set ShowByDefault to false, nothing will be shown in the "Add New ...
0
votes
0answers
78 views

Visual Studio Shell with Custom Solution Explorer

I'm doing a research regarding to Visual studio shell and I was wondering to create an isolated visual shell like below . My question is how to customize the solution explorer like this(fig 1) and add ...
0
votes
0answers
67 views

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

Distributing a Visual Studio Isolated Shell application

I'm thinking about implementing an application using the Visual Studio isolated shell. The way to include the dependencies is including the Visual Studio isolated shell redristibutable package, but ...
0
votes
0answers
94 views

Add context meu item to all files and folders in the solution explorer using vspackage

I want to add a menu item to the context menu of all the files and folders in the solution explorer. I was able to add my menu item to the project node with this entry in the vsct file.. <Menu ...
0
votes
0answers
85 views

Pros/Cons of writing a VSPackage with C++/C#

Does the C# API expose everything the C++ API does? It seems counter intuitive, but I actually read that the c++ API exposes less features of the VS Platform API than the c# API. I'm looking to write ...
0
votes
1answer
80 views

VC++ project “Include in project” programmatically

Is there a way to include folder into VC++ project programmatically via VCProject or EnvDTE interface?
1
vote
1answer
119 views

How to get the details of the selected item in solution explorer using vs package

I am trying to create a VS package in which, i have added a menu command to the context menu you get when you right click an item in solution explorer. Now on clicking the command i want to show a pop ...
0
votes
2answers
68 views

VS 2010+ extension: add filters to project

I'm developing VS extension which must reconstruct specified directory's tree structure via Filters and add existing files from that directory to appropriate filters. How can I add Filters and ...
2
votes
1answer
85 views

Random crashes in Visual Studio extension with command filters

I am trying to create a Visual Studio extension that can record key presses in a text editor and replay them. I have a IVsTextViewCreationListener that calls AddCommandFilter() to add a command ...
0
votes
1answer
78 views

How can I detect if the Solution is initializing using the DTE in a VisualStudio extension?

I am using the DTE to track when projects are loaded and removed from the solution so that I can update a custom Test Explorer extension. I then trigger a container discovery process. But when the ...
0
votes
0answers
145 views

Visual Studio Extension to Display a Work Item Query [closed]

Given the name of a Work Item Query, I'm trying to see how to get Visual Studio to open the Work Item Query's dialog. After some research, I was able to find out how to open the Source Control ...
0
votes
1answer
55 views

How to get the type of the identifier at the cursor

I am writing an extension for Visual Studio 2012 that contains an ICompletionSourceProvider. I need to determine the type of the identifier at the location of the cursor. I tried the following ...
0
votes
0answers
62 views

VS2012 IVsSolution.GetUniqueNameOfProject problems

Calling IVsSolution.GetUniqueNameOfProject from a worker thread fails. It works calling the method from the main thread. Same code worked just fine on VS2012. Has anyone encountered this problem? ...
1
vote
0answers
88 views

PropertyGrid ValueEditor for a file name

I have the following rule definition: <Rule ...> <... /> <StringProperty Subtype="file" ...> <StringProperty.ValueEditors> <ValueEditor ...
0
votes
1answer
981 views

Determine project type ( ProjectTypeGuids ) in VS2010 programmatically for Sharepoint Projects

I use VS2010 and Sharepoint 2010 projects. I have an VS 2010 Addin, and I need detect type project programmatically. I edit my csproj (for Sharepoint Project), and I have seen this ProjectTypeGuids: ...
0
votes
0answers
50 views

Extending visual studio workflow for specific solution

For one of the projects i'm working on, i would like to add some features to visual studio too smooth out the workflow. Adding some button's to open custom tools, or maybe adding some visual studio ...
0
votes
0answers
67 views

Displaying properties for an object in the Visual Studio 2010 Editor

I am trying to extend the code editor in Visual Studio 2010 via a new adornment layer. One of the things I want to do is to allow the user to select an adornment on this layer and display some ...
5
votes
1answer
259 views

Find the type of the item at the current position in a C# editor window

I am writing an extension to Visual Studio intellisense and would like to get the type of the item just before the cursor in a C# editor. I currently have a ITextBuffer which I can use to get the ...
1
vote
0answers
144 views

How to update / refresh glyphs programmatically in Solution Explorer?

I've created VSIX package which displays file statuses as glyphs in Solution Explorer in VS2010. I implemented basic SccProvider (inherited from IVsSccProvider, IVsSccManager2, IVsSccGlyphs and ...
1
vote
1answer
102 views

VSPackage Builder search dialogue

I'd like to add a search dialogue popup, really just a text box or something at the top right of the current document. I've messed around with the VSPackage builder and it's easy enough, but I'm ...
3
votes
3answers
401 views

Detect the Visual Studio version inside a VSPackage

How can I check/detect which Visual Studio version is running under my VSPackage? I cannot get from the registry because the computer could have several versions installer, so I guess that there is ...
1
vote
1answer
353 views

Selected project from Solution Explorer

I am writing a customization package for Visual Studio 2010 (vsix). What I need to do is to add a context menu button to the Project nodes in Solution Explorer. I've managed to get the context menu ...
0
votes
1answer
190 views

What is the “Organize Usings” menu ID in Visual Studio 2010?

I'm creating a Visual Studio 2010 extension using a Package template, not an Add-in. I want to add a menu item to the "Organize Usings" menu group that appears when you right-click in a .cs file. To ...
4
votes
3answers
301 views

Get the Visual Studio color scheme from a VSPackage

Somebody know how can I get the color scheme programatically using a VSPackage in C#? I know that I can use IVsUIShell5.GetThemedColor for VS2011, but I don't know how to get it from VS2005, VS2008 ...
0
votes
1answer
79 views

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 ...
3
votes
1answer
270 views

Visual Studio 2010 MEF vs MPF?

I'm looking into adding a new programming language to visual sudio 2010 and I'm a little confused on the best approach to take. I've looked into the MPF and found some examples on how to do syntax ...
0
votes
1answer
139 views

Extending visual studio xml editor with hyperlinks (navigation)

Is there a way to extend visual studio xml editor with navigation functionality like in C# editor. C# editor (I don't know is this VS or Resharper functionality) allows jumping to another class ...
0
votes
1answer
132 views

Color Indicator for Code Changes – Track Changes in Visual Studio 2010

Is there a way in Visual Studio 2010 SDK to change the behavior of the Track Changes? I would like to override it to add some other capabilities, but didn't found the way at the moment.
0
votes
1answer
19 views

VS 2010 Extension Access Loaded Types

I am currently try to write a code generator and I would like the user to select the target type for a property on a class via a drop down, but to populate the drop down I need to know what types are ...
0
votes
1answer
80 views

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

insert Code before Build

I am building a vspackage for Visual Studio 2010, and need to be able to inject code invisibly into every function in the solution during the build process. Currently I can use this: TextDocument ...
1
vote
1answer
195 views

How to make a shortcut to run a VSIX method?

please see this question. The initial question was solved, and I have a method in my extension. I want that when the user installs the extension, a keyboard-shortcut should be installed as well, and ...

1 2 3 4