Tagged Questions

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
494 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
2answers
985 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 ...
2
votes
1answer
115 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 ...
0
votes
0answers
21 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
2answers
42 views

How can I force a cast from EnvDTE.Thread to System.Threading.Thread?

In a VS extension project, I am trying to create a mapping of the process threads, cast as both EnvDTE.Thread (to access the Freeze and Thaw methods), and System.Threading.Thread (to access the ...
0
votes
1answer
214 views

Get ProjectItems for Partial Class through CodeModel

I have seen looking for a way to get the list of ProjectItems (files) for a known class, which generated from several partial classes. I use CodeModel to search for a class and accessing the ...
0
votes
1answer
390 views

VB.NET EnvDTE Up-To-Date check before building project

how do I check if a project is up-to-date? I'm basically trying to programmatically build each project in a list but only if they have changed. So does anyone know of a way (using EnvDTE maybe) to ...
0
votes
0answers
448 views

Manipulation of Visual Studio 2008 Solution and Project files

.Net; EnvDTE; Visual Studio 2008; I've written a simple console app. to create a new instance of Visual Studio 2008; followed by opening a solution into this instance (making use of the EnvDTE ...
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 ...