Visual Studio eXtensibility (VSX) is the ability to develop extensions to the Visual Studio IDE from Microsoft. Extensions are developed using the VSSDK.

learn more… | top users | synonyms

0
votes
0answers
31 views

Passing custom project properties from Visual Studio Extension during build

How can I pass a custom MsBuild property to Visual Studio build engine from Visual Studio Extension (I want to write a custom add-in) ? Just like Visual Studio itself is passing properties like ...
0
votes
0answers
41 views

How do I detect a breakpoint being deleted in Visual Studio?

There doesn't seem to be any event in EnvDTE's DebuggerEvents that notifies the consumer when a breakpoint is deleted. I've also looked at Visual Studio SDK and registered an IDebugEventCallback2, but ...
6
votes
2answers
117 views

From a VS2008 VSPackage, how do I get notified whenever caret position changed?

I'd like to get notified whenever the caret position changed in the active text view. The only thing EnvDTE seems to offer is the LineChanged event, which of-course does not get raised when moving the ...
0
votes
1answer
44 views

Can one assign keyboard shortcuts to Visual Studio 2012 extensibility package commands that use DynamicItemStart?

I've got a VS2012 extensibility package that adds commands to a menu using the DynamicItemStart command flag, as described on MSDN. These commands work a bit like the inbuilt External Tools facility, ...
0
votes
2answers
71 views

EnvDTE VS 2012 ProjectItems.AddFolder

I am recreating an AddIn project that I had in VS 2010 and a basic function like adding a folder to the project is not working. Giving me: The kind 'vsProjectItemKindPhysicalFolder' passed to ...
0
votes
1answer
170 views

Supporting user-specified file extensions in custom Visual Studio language service

I'm working on a custom Visual Studio language service, and have several questions regarding the way file extensions are bound to a particular language service. Source files for the language "Example ...
0
votes
0answers
25 views

How to implement a directory-based custom project type

I'd need to implement a custom project type that does not rely on a project file at all to persist its data, but, rather, is "bound" to a directory pretty much in the same way as the standard ...
0
votes
3answers
77 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
73 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 = ...
0
votes
1answer
61 views

How to define a SplitDropDown or MenuButton for a toolbar in a *.vsct file?

I defined a toolbar for a tool window by following this walk-through description. Adding new buttons to the toolbar, and connecting them to code within my package, is no problem and works fine (So I ...
2
votes
1answer
281 views

Invoke source control compare operation in vs2012 extension

I am writing a vs2012 extension that will talk to TFS 2010 (though I would prefer if it could also work with tfs2012). I need to invoke a compare operations on a file from the extension. I want to ...
2
votes
0answers
75 views

How can I force an IWpfTextView to refresh/invalidate it's layout?

I'm currently writing an extension that provides a custom TextFormattingParagraphProperties (via ITextParagraphPropertiesFactoryService). This seems to work fine except for when I want to update the ...
1
vote
0answers
85 views

what is DebuggerProxy.dll and is this file need for the released isolated shell

I have created an isolated shell application base on VS2010 and I found there are two files which I am not familiar with DebuggerProxy.dll , DebuggerProxy.dll.manifest When I output the debug ...
0
votes
0answers
118 views

Undocumented arguments for external tools

Are there any undocumented arguments that can be used in Visual Studio? In particular, I am looking for one that will provide some info about a selected assembly. Would it be possible to add your own ...
3
votes
0answers
50 views

How to get call relations of an open solution by using a plugin

I try to develop a VSPackage for VS 2010 that investigates all the available methods in the current solution and to reconstruct the call relations of each single method just like the built in Call ...
0
votes
0answers
101 views

VSPackage - Dynamic ToolWindow Toolbar ComboBox width

I have come across this annoying problem with VSPackage's ToolWindow ToolBar. I successfully added several comboboxes in VSCT file - they are visible, their items are displayed and everything seems to ...
7
votes
1answer
443 views

How to add commands to Visual Studio 2012?

How can I add custom commands to the keyboard dialog (Tools->Options->Keyboard) in order to trigger them by shortcuts? Unfortunately, I could not find any resource on the web. I crossed this blog ...
0
votes
1answer
370 views

How do I programmatically refresh/reload a VS project after modifying the underlying file?

I am developing a Visual Studio package and I have written some code that will make a file in Solution Explorer dependant upon another file. What this means is that it gives them the same ...
0
votes
0answers
93 views

How to create Custom Options Pages for Visual Studio

I have take this website as reference to create my own option page, but by following the steps it listed, my customized page still cannot be shown in Tools->Options (the defined category is shown in ...
2
votes
1answer
427 views

VSIX Package doesn't include referenced project's dependencies

We have a visual studio package (VS Package) that references a class library project (Project A). Project A in turn references another class library project (Project B). So the dependency structure ...
0
votes
0answers
246 views

How to create a custom XML designer in Visual Studio for the .xml extension for a specific xml namespace

Recently I have been working on a Visual Studio extension that includes a custom editor for an xml file that we have. I have been using the Designer View Over XML sample provided in the Visual ...
1
vote
1answer
244 views

How to add context menu entries in website projects?

I'm not able to add context menu entries for website project items. How to reproduce the problem: Create a VS Package project Go to the vsct file and replace the groups section with: <Group ...
0
votes
0answers
151 views

How to disable/customize the Visual Studio Conversion Wizard window when opening a solution file created by previous version Isolated Shell app

Currently I worked on a project which is an Isolate Shell application based on .net framework 3.5 and Vs2008, and the project can create solution file defined by ourself Then the project was upgraded ...
0
votes
0answers
28 views

Is there a decent 'Ordered Test Editor' for Visual Studio?

Do you know some better 'Ordered Test Editor' for Visual Studio (2008, 2010)? I found that the actual editor does not provide a much help when you have a lot of tests. For example I would like: ...
1
vote
3answers
339 views

How do I programmatically add a file to a Solution?

I am developing a VS Package and part of the functionality that I need to implement is to add a file to the Solution Items of the currently open Solution. This is exactly the same action that would ...
0
votes
1answer
55 views

How do I unit test a classifier?

given the signature public IList<ClassificationSpan> GetClassificationSpans(SnapshotSpan span) I've been tracing through properties and constructors of SnapshotSpan and haven't found ...
1
vote
1answer
218 views

How to find the Current SolutionPath in VS 2012?

i´m working on an addin for VS 2012.. The problem is, i need to find out the current SolutionPath to put a file in the current solution.. How can i do this? Thx!
0
votes
1answer
296 views

Preview file in VS11 Solution Explorer

I have a Visual Studio extension which generates a script file and adds it to the current project. I want to take advantage of the file preview feature in the Visual Studio 2012 Solution Explorer so ...
2
votes
1answer
164 views

What goes in the “Non-Public members” node in Visual Studio's Watch window?

I assumed that all Non-Public (ie, private, protected, internal, and internal protected) members of C# objects go under "Non-Public Members" when I look at objects in Visual Studio's Watch Window. But ...
1
vote
0answers
81 views

Change Visual Studio 2010 shell menu text [closed]

I have created a Visual Studio 2010 shell application and am putting the finishing UX touches on the application. I need to change the text for the Build menu in the menubar. How would I do that?
0
votes
1answer
71 views

How to make commands of the inactive/hidden “Tool Window” accessible?

I have one VSPackage with some commands registered in the Initialize() function and are accessible globally using toolbar/menu/shortcut keys. This VSPackage also has one Tool Window (derived from ...
0
votes
2answers
225 views

Creating a custom designer

I've been asked to create a Custom Designer for Visual Studio. In this designer a programmer can create/edit Forms with controls and position them. The input and result will be used and compiled by ...
2
votes
2answers
222 views

Show a Visual Studio Extension Toolbar by default

In a Visual Studio extension, I have defined a Toolbar in my .vsct file as: <Menu guid="guidVsCmdSet" id="MyToolbar" type="Toolbar" > ...
0
votes
1answer
24 views

VSIX: subscribe to command

How do I subscribe to a 3rdparty extension's command from my own VSIX extension? Such as OnClick event of an extension.
0
votes
1answer
125 views

How to write unit test for Visual studio package

I am now working on a visual studio package project, currently all our tests just simulates the way we interact with visual studio with windows open and close, menus selection, button click and so ...
0
votes
1answer
107 views

How to access project code meta data?

In my VSPackage I need to replace reference to a property in code with its actual value. For example public static void Main(string[] args) { Console.WriteLine(Resource.HelloWorld); } What I ...
2
votes
3answers
219 views

How to manage undo/redo stack in VSPackage?

I have created VSPackage that provides certain functionality in Visual Studio code window context menu. This action consists of several code edits plus some stuff around. The problem is, each of ...
1
vote
1answer
158 views

Invoking standard “File changed outside Visual Studio” dialog

I have succesfuly created custom single view editor in my VSPackage. One of many things I had to cope with was reacting to situation when edited file was changed outside Visual Studio - "standard" ...
1
vote
1answer
216 views

VSX: Custom project types

I'm trying to create a project template that works with VS2010 Standard/Pro/Ultimate, as well as Integrated Shell. I've got the VS2010 Std part working, but for the life of me I can't get it to work ...
0
votes
1answer
128 views

visual studio extensibilty - How can I check if Silverlight debugging is enabled in an ASP.NET Web Site?

How can I programatically check whether a Web Site has Silverlight debugging enabled (ie, whether the "Silverlight" checkbox under "Property Pages->Start Options" is checked)? I know that for a Web ...
1
vote
1answer
547 views

Visual Studio MEF & Irony: No syntax higlighting

My ITagger is generating tags, however, visual studio is not showing the syntax coloring. Here is the code for ITagger: [Export(typeof(ITaggerProvider))] [ContentType("FDL")] ...
0
votes
2answers
197 views

Split button in a tool window toolbar

i'm writing a visual studio 2010 extension and got a ToolWindow with a ToolWindowToolbar. in my toolbar i want to add a split button that while pressing the button (left part) will show the 'open ...
0
votes
1answer
56 views

Use IsolatedStorageFile or the WritableSettingsStore?

I'm making a visual studio 2010 extension and need some storage to store some settings like: a list of recent files, ui control state, some user preferences, etc... Which should I use, and why? the ...
0
votes
2answers
232 views

how can i add a new icon to a Visual Studio 2010 extension?

i'm developing a Visual Studio 2010 extension, i already have a toolbar inside my window. on that toolbar i have a button that i want to give an icon - my own icon! I've read this article and it is ...
0
votes
1answer
1k views

Add Existing File To Visual Studio Project using DTE

I've programatically created a number of files. I want to add them to the visual studio project. I have a reference to the project (DTE.Project). When I execute the code below, I get an error message. ...
1
vote
2answers
94 views

draw something in vsx

I found this picture , I am curious that how the adornment can draw into to vs text editor. My First Sense is that we can get the text window handle and then draw what we what. But I tried to ...
3
votes
1answer
279 views

How do I programmatically find out the Action of each StartUp Project in a solution?

Under Solution->Properties, I can set multiple start-up projects: I know that I can get the list of projects marked with "Start" (by using EnvDTE: solution.SolutionBuild.StartupProjects), but how do ...
1
vote
0answers
93 views

Would like to add features to Text Editor - which editor to choose? [closed]

I would like to add some new features to a text editor. The main requirements I have are: Should be a programmer's editor I would like to target C# editor features to start with (since I work on ...
0
votes
1answer
286 views

Find out if cursor is inside a method, class or namespace block

I would like to create a Visual Studio addin which can identify if the caret currently is inside a method, class or namespace block, i.e. if the caret moves, the addin should be able to note down the ...
3
votes
1answer
94 views

How do you force a call to ILineTransformSource.GetLineTransform in a VS extension for a change to a line adornments dimensions?

I 'm writing a Visual Studio extension where I'm creating line adornments that need to be resized when the user resizes the code view. I.e. when the user resizes Visual Studio's window width, I modify ...

1 2 3 4 5 6