Tagged Questions

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
480 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
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", ...
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
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
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
571 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 ...
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
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
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
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
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
2answers
304 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 ...
1
vote
1answer
454 views

Can you access 'Service Reference' Programmatically?

Info: C#, Visual Studio 2010 I am trying to access the existing service references and am not sure how, I can achieve the following to get all 'references' DTE2 test = ...
1
vote
2answers
319 views

How to create CodeFunction2 with IEnumerable<> Type?

I really need to create something like the following, I am building 2 classes, the first is a class with the name of tableNameAsSingular (i.e AddressEntity) , in my second worker class I need to ...
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
2answers
172 views

Getting the instance of EnvDTE.Debugger in VS2010

I'm trying to create a Visual Studio Integration Package project which will display data from the debugger. So I found the EnvDTE namespace, that looks to give me the needed classes and methods. ...
0
votes
1answer
24 views

Is there a way to remove a previously persisted item from Solution.Globals?

I'm trying to build an addin that persists it's config data within a solution. Persisting information within the solution is no problem, following what's outlined at msdn: // initialized from within ...
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
0answers
40 views

Removing section outline on a document

Making it short: In DTE2, after applying TextSelection.OutlineSection on a selection (or multiple selections) in the document, is there any way to undo it or remove all outlines?
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
222 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
99 views

Prevent new file from opening on add

I'm doing a GAX project and I have an action that adds all the files from a folder to a new "Solution Items" folder. This serves to insert the files needed at the project root as the ...
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
0answers
151 views

IDE crashes while calling ProjectItems.AddFromFile with TFS connected

i wrote a Visual Studio 2008 Addin, which generates some code files for me with some settings which i can enter on a UI form. If i execute the addin with a connection to our TFS 2008, the dialog of ...
0
votes
1answer
498 views

EnvDTE Retrieving the data type from a CodeElement

I am using EnvDTE to generate some code in my latest project. I have a reference to a CodeClass-Object for a given C#-Class but now I wanted to loop through all of its members (in codeClass.Members) ...
0
votes
1answer
82 views

How do I find and open a file in a Visual Studio 2005 add-in?

I'm making an add-in with Visual Studio 2005 C# to help easily toggle between source and header files, as well as script files that all follow a similar naming structure. However, the directory ...
0
votes
1answer
271 views

Visual Studio Add-In: How do I know when a solution has finished loading

I'm writing a VS2008 add-in (using DTE) that needs to be notified after the current solution has finished loading. I've tried using the following code: events = (Events2) applicationObject.Events ...
0
votes
2answers
505 views

Are there differences between EnvDTE or CodeDom when generating Code

I have the requirement to generate and read some CS classes with a DSL, I have adopted one method for reading the CS files using EnvDTE and my colleague has used CodeDom to produce the CS files. Is ...
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 ...