Tagged Questions

2
votes
1answer
190 views

VS2010 extension, using MEF tagger, want to use code model

I want to write a visual studio 2010 extension displaying a margin glyph on each class, method, property, field and event definition (tooltip/popup window on click with additional info). The new MEF ...
2
votes
2answers
152 views

Visual Studio Debugger extensibility - How to follow VS Debugger source file path redirections?

I'm writing a VS extension that needs to know the full path of the file the user is currently debugging, and I want to support the scenario where the source path written in the pdb is not correct, and ...
2
votes
1answer
109 views

How can I find all of the solution's assemblies

I'm writing a Visual Studio extension/add-in and I want to find the names of all of the assemblies created from the projects in the current solution. I don't have any technological limitation - I can ...
1
vote
1answer
110 views

Get type information from assemblies in current solution from VS2010 extension

I'm building a command extension for the UML Sequence Diagram in VS2010, and need a list of types that implement a particular interface in the current solution. How do you access type and assembly ...
1
vote
1answer
79 views

How can I find the Column Line of the current StackFrame in Visual Studio Debugger?

There is no ColumnNumber property in the EnvDTE.StackFrame2 interface, even though LineNumber does exist: http://msdn.microsoft.com/en-us/library/cc701201(v=VS.90).aspx; IL offset will also do, I ...
1
vote
1answer
136 views

How do I get the output directories from the last build?

Let's say I've got a solution with one or more projects, and I've just kicked off a build using the following method: _dte.Solution.SolutionBuild.Build(true); // EnvDTE.DTE How can I get the output ...
1
vote
1answer
105 views

In EnvDTE's Debugger.GetExpression method, what does “UseAutoExpandRules” mean exactly?

The documentation poignantly explains that this parameter should be "true if the auto-expand rules should be used; otherwise, false.", but what does it mean exactly? I can't seem to find any ...
1
vote
0answers
168 views

Access EnvDTE from msbuild code when building in Visual Studio

When I do a build from Visual Studio, on post-build I execute a PowerShell script from MSBuild using the PowerShell MSBuild Task (http://powershellmsbuild.codeplex.com/). In this PowerShell code I ...
1
vote
2answers
136 views

How can I listen for the deletion of a ProjectItem via DTE?

I've got a designer that relies on the existence of other solution items. If one of those items is deleted the designer crashes and you have to edit as XML to fix. Not exactly user friendly. I do, ...
0
votes
0answers
25 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. ...
0
votes
0answers
39 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 ...
0
votes
1answer
110 views

Programmatically publish web application

I'm trying to write a visual studio extension that allows me to publish multiple web applications in a solution, similar to using the one-click publish feature on all the projects. DTE2 service = ...
0
votes
1answer
40 views

Get instance of IMonitorSelectionService for Visual Studio Sequence Diagram

I'm trying to create a Visual Studio extension that works alongside the Sequence Diagram Designer, and I'd like to be able to register for an event that will notify me whenever the selection changes ...
0
votes
0answers
80 views

When is it safe to iterate EnvDTE's debugged Process' Modules collection?

It seems that accessing the Modules list of the EndDTE's Debugger object during a debugging session, when the debugee is Running is not always safe. I would like to be able to iterate the list of ...
0
votes
2answers
216 views

EnvDTE.Expression - Getting the internal name of DataMembers programmatically

Supposing I have the C# code line: var myList = new List {1,2,3}; And I put "myList" in the Watch window, and then drag the 1st item of the list down, the watch window creates a new line with the ...
0
votes
1answer
255 views

How do I set the Project's 'Start External Program' setting programmatically?

I have an IWizard which gets access to a Project variable. What code do I need to write to set the 'Start External Program' value in project properties?
0
votes
2answers
153 views

EnvDTE partial class keyword

I'm introspecting on the code in a project using EnvDTE, and I want to be able to determine if they're a partial class, but it doesn't seem to exist in the namespace. Does anyone know how to do this? ...