Tagged Questions
EnvDTE is an assembly-wrapped COM library containing the objects and members for Visual Studio core automation.
13
votes
4answers
2k views
Capture window close event
I want to capture events that close editor window (tab) in Visual Studio 2008 IDE.
When I use
dte2.Application.Events.get_CommandEvents(null, 0).BeforeExecute
I successfully captured such events:
...
8
votes
6answers
481 views
Get types used inside C# method body
Is there a way to get all types used inside C# method ie:
public int foo(string str)
{
Bar bar = new Bar();
string x = "test";
TEST t = bar.GetTEST();
}
would return: Bar, string and TEST.
...
7
votes
5answers
838 views
How do you check if a variable is used in a project programmatically?
In VB.NET (or C#) how can I determine programmatically if a public variable in class helper.vb is used anywhere within a project?
Thanks in advance.
5
votes
1answer
490 views
Adding solution-level items in a NuGet package
I want to add solution folders and solution items (not projects) to a solution file via a NuGet package. I imagine this would be accomplished through Powershell. I've looked through the ...
5
votes
1answer
175 views
Form won't save after creating it with EnvDTE
I have created a Visual Studio Add-In that adds a form to an existing Project in the opened solution.
This is how I create the form:
string templatePath = sol.GetProjectItemTemplate("Form.zip", ...
5
votes
2answers
982 views
Can you do a RunCustomTool with EnvDTE as a pre-build event?
I am using T4MVC, and I can't use a pre-build event to run TextTransform.exe as it relies on EnvDTE, and must be run with Visual Studio as host.
If I have run custom tool once, it works nicely ...
5
votes
6answers
2k views
How to put breakpoint in every function of .cpp file?
Is there a macro that does it? Which DTE objects to use?
4
votes
1answer
158 views
Performance of changing Visual Studio colors with custom add-in
I'm creating an add-in for Visual Studio 2008 that will allow me to switch between color schemes with a hotkey.
I got it to successfully load a color scheme and apply it, but it's very slow.
Here's ...
3
votes
2answers
196 views
T4MVC “run custom tool” generates EnvDTO 7.0 vs 8.0 csc warning
I'm getting the following warning when I right click on T4MVC.tt and select "run custom tool" (i.e. rebuild by T4MVC.cs file).
Warning 1
Compiling transformation: Assuming assembly reference ...
3
votes
4answers
1k views
Visual Studio 2010 DTE: How to make added DLL reference absolute and not copied
Summary:
We need to duplicate the behaviour of the Add Reference dialog, using DTE, when you add a specific DLL (it adds a Hint path entry to the reference in the CSProj file).
*Note: There is ...
3
votes
2answers
198 views
Adding a custom build step with a nuget package
I am developing a nuget package which will set up the current project to use my company's assembly versioning standard. I've got it doing everything I want (so far) smoothly apart from adding in a ...
3
votes
4answers
537 views
How can I create new blank solution in vs 2008 programmatically?
The design based approach is: New Project -> Other Project Type -> Visual Studio Solution -> Blank Solution
I have to create a blank solution programmatically in C# and in this solution add new empty ...
3
votes
2answers
338 views
How to block on a OpenFile in a Visual Studio addin
I have a Visual Studio 2008 addin that when I press a certain hotkey, it opens a specific file (different based on the context of the hotkey) and then searches that file for a specific string (again, ...
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
187 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
150 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
66 views
Get Access property of a CodeElement
I'm writing an Add-in for VS 2010. Can't find answer for a question - How can i get the Access property of a CodeElement if it has that one.
I was trying reflection, but no results.
Ex. CodeElement ...
2
votes
1answer
114 views
Type safe wrapper for EnvDTE?
Dealing with EnvDTE is a pain in the ass. The documentation is disastrous, and its near impossible to quickly poke around inside. Just look at this crap:
Nothing but __ComObjects as far as the ...
2
votes
1answer
665 views
Get the reference of the DTE2 object in Visual C# 2010
I want to get a reference to the current solution, using the DTE2 object with C# in Visual Studio 2010.
I first tried the following code:
var dte = Marshal.GetActiveObject("VisualStudio.DTE.10.0") ...
2
votes
1answer
256 views
Problem using EnvDTE.Property.set_Value to set ProjectItem FullPath Property
I have a Visual Studio Project Wizard that attempts to configure a VC# project to override the FullPath property for selected files from the template.
The following code is used from within function
...
2
votes
0answers
141 views
Visual Studio Macro - Logging Timestamps on Solution opens, closes, builds, etc
I've got a solution that takes a while to open. (5 minutes) Due to our processes and procedures I'm constantly jumping around between different branches of the same solution. I'm constantly closing ...
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
1answer
929 views
Finding a ProjectItem by type name via DTE
Given a type name, is it possible to use DTE to find the ProjectItem that the type is located in? Something similar to how the Navigate To... dialog works in Visual Studio 2010.
The closest I could ...
2
votes
1answer
572 views
Create new c# project files from code
I'm currently working on an application that will generate actual .cs and .xaml code files and add them to a project. I've managed to do this by manually editing an existing .csproj file and thats ...
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 ...
2
votes
1answer
169 views
How to overlay a control onto the Visual Studio code surface
I am writing an addin into Sql Server Management Studio, using the Visual Studio Extensibilty APIs. I have had some success overlaying a control onto the text surface (I'm attempting to emulate the ...
2
votes
2answers
2k views
DTE.ExecuteCommand and wait
I would like use macros for publishing my webapplication project. The little problem is, DTE.ExecuteCommand run asynchronously, and I need to wait until the command is done.
Example:
...
1
vote
0answers
31 views
DTEEvents.OnStartupComplete event not working for VSPackage (VSSDK2010)
In the Package constructor I added the event handler for OnStartupComplete event. But when I run the code, the the event handler is not called. What am I doing wrong?
1
vote
2answers
29 views
SetSelectionContainer example
I looking for a simple example using c# to call the SetSelectionContainer method on the EnvDTE.Window class.
I would like to know what the classes should look like that I should pass to the method.
...
1
vote
0answers
34 views
Visual Studio type discovery service is painfully slow
I have followed this blog post (which proved to be awesome) in order to retrieve a type (types) from the project that inherit from a certain base class.
This usually work fine, however when ...
1
vote
1answer
86 views
How can I get an ITextBuffer out of an EnvDTE.Window?
I have a managed syntax highlighter using the new VS extensibility API's and it gives me an ITextBuffer, which is great.
In another part of my extension I am getting a DTE object and attaching to the ...
1
vote
3answers
159 views
Get ProjectItem path without using item.Document.FullName
I have a visual studio add-in project where I must iterate through the current project's items, utilizing the absolute (or relative) path to those files.
The item.Document.FullName works, but only ...
1
vote
1answer
107 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
535 views
Getting the macro value of project's TargetPath via DTE
I need to get the absolute output path of the project's assembly via DTE. I tried doing this using this method, where I would access the OutputPath property, combining it with the assembly name, ...
1
vote
1answer
221 views
Rebuilding Solution in VS with DTE
Lately I have been having a problem with Visual Studio 2003, after a couple of times you run the solution, there will come this one run that will tell me a lot of objects are missing... or that many ...
1
vote
2answers
282 views
Build/Rebuild Project VS 2008 using DTE
How can I Build and Rebuild a Project csproj using DTE.ExecuteCommand ?
Any reference of all commands of DTE ?
For solution, I use this:
Logica.BuildTracking.IniciarBuildTrack();
...
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
165 views
Is there an event triggered when dte.Solution.SolutionBuild.StartupProjects changes?
I am building a visual studio 2010 Add-in for internal use in my company. I would like to customize the main window caption to display the name of the current start up project. I can set the caption ...
1
vote
1answer
487 views
Using T4 templates to generate ViewModels
In my mind this sounds like a superb idea. Using the EnvDTE would make this possible too, so why isn't there more examples on this available?
Maybe I'm missing an disadvantage of doing this...?
Any ...
1
vote
1answer
140 views
Get active Visual Studio object
using this code I get the object representing Visual Studio:
var dte2 = Marshal.GetActiveObject("VisualStudio.DTE.10.0") as DTE2;
However, when I have multiple instances of VS opened, this returns ...
1
vote
0answers
67 views
How to get caret position inside the active webforms designer having only the DTE object in VS2008?
I want to know some information about where the caret is int the currently active webforms designer window, but I have only the DTE object of VS2008. Anything that gets close to this might help, but ...
1
vote
1answer
78 views
Getting the return value of a method via DTE.Debugger without evaluating the method?
I'm looking for a way to get the return value of a method via the Visual Studio Debugger (using DTE). Is it possible to obtain it if I'm at the closing brace of the method, but not yet exited? Also, ...
1
vote
1answer
251 views
How can I get only classes defined in the current project in EnvDTE?
I've got a Package for Vs2010 that currently follows
EnvDTE=>Solution=>Projects=>CodeModel=>CodeElements
to do the following recursively and find classes
var q = ...
1
vote
0answers
164 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
135 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, ...
1
vote
0answers
165 views
Accessing .vsprops (Property Sheets) via VS Automation and Extension
I am trying to access user macros that are defined in a .vsprops (Property Sheet) that is used by a Visual Studio 2008 project. I cannot find any documentation on accessing any information in a ...
1
vote
2answers
115 views
C# equivalent of the C++ custom project Wizard
I have an existing wizard template created for VC++ from year back, ported to VS2008. It uses the custom wizard jscript/html templating system and DTE object. I've used this successfully for years, ...
1
vote
1answer
500 views
Programmatically add a WCF Service Project Item
Info: C#, Visual Studio 2010 RC
How can I add a WCF Web Service Project Item to my Project via code?
I can add a Code Class file no problem with:
string csItemTemplatePath = ...