Tagged Questions
8
votes
6answers
488 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.
...
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 ...
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
67 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
0answers
143 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
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
170 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
3answers
166 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
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
540 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
222 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
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
166 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
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
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
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, ...
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
2answers
305 views
Instantiating VisualStudio 2008
I'm trying to get a list of all projects within a specified VS2008 solution. (this is a stand-alone console app, it is not a Visual Studio add-in)
My code works with VS2005 solutions, but I get all ...
0
votes
0answers
22 views
Convert Visual Studio command binding to/from System.Windows.Forms Keys
I'm working on an a Visual Studio Add-in that needs to convert System.Windows.Forms.Keys to/from the shortcut key binding string in a command binding obtained via VisualStudio.DTE.10.0. I have code ...
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
58 views
Howto add existing projects to visual studio project via template wizard
I would like to add existing projects to a new solution generated by a template. Can I achieve this via vstemplate file or do I have to use IWizard. And if I have to use IWizard how can I correctly ...
0
votes
0answers
12 views
How do determine whether a package has been sited in EnvDTE?
I need to keep track of documents in a project and update an external file when the user changes things. I am using a VS Add-in rather than a VSPackage, so am using EnvDTE and some of the ...
0
votes
0answers
48 views
Refreshing Visual Studio Output Window
I have some C# code writing progress messages to a Visual Studio 2010 EnvDTE.OutputWindowPane. The code is invoked from a Visual Studio menu (it's in a VSPackage).
The problem is that the output ...
0
votes
3answers
111 views
VisualStudio API: include existing folder without recursively adding all the contents?
Currently I'm using:
EntDTE.ProjectItems.AddFromDirectory()
to include the existing folder into VS project model, but this method includes into project all the contents of this folder too. Can ...
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
43 views
Visual Studio Addin - Programatically find References
I have an ASP.NET web app with various tiers, UI > BL > DAL.
I want to add a custom attribute to functions in the UI tier, lets say I add one to "MyDisplayUserNameFunction"
Then I want to be able to ...
0
votes
0answers
167 views
Wait for Visual Studio DTE ExecuteCommand to finish
Using the Visual Studio DTE, I can execute commands with the ExecuteCommand method. However, they are executed asynchronously. I would like to wait until for the ExecuteCommand method to finish before ...
0
votes
1answer
47 views
Package a SharePoint solution from the DTE
Is there a way to package a SharePoint solution in a .wsp file from the Visual Studio dte?
I can build the solution with the following command:
$dte.ExecuteCommand("Build.RebuildSolution")
But ...
0
votes
1answer
120 views
Updating form designer after adding controls through an Add-In
I am exploring the EnvDTE library, and building a form generator.
I have successfully added controls to a form, however, the controls' codes are not added to the form designer (formname.Designer.cs), ...
0
votes
2answers
375 views
How do I Edit a .cs file in a Add-In Project using DTE
I'm trying to write my first add-in for vs2010, but im struggling.
I have a assembly that generates lots of cs files. I want my plugin to add new files to the select project or if the files exist, ...
0
votes
2answers
150 views
C# Add-in: How do you access runtime instances of objects while debugging?
I am developing an add in for C# that would only be used during debugging. Once instantiated, my add in needs to find all instances of a specific class or interface to display a graph about the data ...
0
votes
2answers
300 views
Add item to Error List in Macro
I want to notify the user of the macro if something went wrong during the execution of the macro. I was wondering if it would be possible to add an item to the Visual Studio error list?
It is ...
0
votes
1answer
60 views
Adding controls to a form when I only have the reference to it’s EnvDTE
I am writing na Add-In for Visual Studio 2010, and I want it to add controls to an existing Form in an existing Project in an existing Solution, and I already have references to all of them.
As I ...
0
votes
1answer
224 views
No reference to project item created through AddFromTemplate() returned
In a Visual Studio Add-In that successfully creates a form, but gives me no reference back to the EnvDTE's prjItem instance.
Here's the piece of code that adds the form to the project:
string ...
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
1answer
58 views
EnvDTE CodeClass.AddDelegate overload
I want to create 2 delegates with the same name but different parameters (overloaded delegate). When I try to add a delegate I get an error on the second try due to a delegate already existing. I ...
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
99 views
How to get notification when a successful build has finished?
I'm writing an VS add-in and I need to run a certain method after a successful build.
I've tried using dte.Events.BuildEvents.OnBuildDone but that event happens even if the build failed.
Is there a ...
0
votes
2answers
446 views
Remove a keyboard shortcut binding in Visual Studio using Macros
I have a lot of custom keyboard shortcuts set up. To avoid having to set them up every time I install a new visual studio (happens quite a lot currectly, with VS2010 being in beta/RC) I have created a ...
0
votes
1answer
122 views
Catching DTE event in Javascript
I am trying to catch Visual Studio Extension events in browser javascript, DTE is available through window.external:
window.external.DTE.Events.SolutionEvents.Opened = ...
Access is ok up to ...
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?
...
0
votes
1answer
96 views
error while trying to create DTE2 Interface object with ruby
I am trying to use ruby win32ole lib and DTE2 Interface to control visual studio 8 \
tried this
require 'win32ole'
ide = WIN32OLE.new('EnvDTE80.DTE2')
and received this error unknown OLE ...
0
votes
1answer
519 views
How can I turn DTE.ActiveWindow.Selection into the closest CodeElement in a VS2008 Macro?
I'm working with the Visual Studio 2008 object model as seen here: VS2008 Automation Object Model Chart.
I want to act on a CodeElement in a VS2008 Marco, one that is chosen by the user's text ...