EnvDTE is an assembly-wrapped COM library containing the objects and members for Visual Studio core automation.

learn more… | top users | synonyms (1)

0
votes
1answer
18 views

How do I provide multiple vsFindOptions in TextDocument.ReplacePattern?

I hope you guys might help me become smarter. I am making a simple VS2012 Addin. The Addin is a more extensive search/replace functionality specific to a task regularly performed at our company. I ...
2
votes
1answer
57 views

How to determine if a type implements an interface in Powershell

I have a Member class in a project. I find this class by using powershell on package manager console in Visual Studio. public class Member : ICacheable { public string FirstName; public ...
0
votes
0answers
16 views

Verifying solution config and target platform settings from within a test project

I have a unit test project in a solution and want to add a [IsSolutionConfiguredForProduction] check that will test to see whether each project in the solution matches the following criteria: ...
0
votes
1answer
20 views

DocumentSaved event is never raised

I'm trying to write a simple Visual Studio extension that performs an action when a file is saved: protected override void Initialize() { base.Initialize(); var dte = ...
0
votes
0answers
27 views

Add an Item to the visual studio folder right-click menu within AddIn

I want to add an menuitem to the right-click=>Add menu in visual studio 2012 solution explorer. When click the custom item I can add a project with my template. I developed a Visual Studio Add-In to ...
0
votes
0answers
58 views

Issues with loading solution (.sln) file using c#

I am trying to load solution file using c#. I am doing this using DTE object. Following is the code snippet to achieve this. DTE DteObject = new DTE(); DteObject.Solution.Open(@SolutionFilePath); ...
6
votes
2answers
106 views

From a VS2008 VSPackage, how do I get notified whenever caret position changed?

I'd like to get notified whenever the caret position changed in the active text view. The only thing EnvDTE seems to offer is the LineChanged event, which of-course does not get raised when moving the ...
0
votes
0answers
9 views

Accessing current solution configuration from within a non-add-in application

Among multiple projects, I have a Console application that is triggered on every build. It displays a checklist of items developers need to fix before allowing publishing to the production server ...
0
votes
1answer
28 views

How to add a reference to another project in my solution through Visual Studio automation

I create a new solution and add some projects to it via the Solution2.AddFromTemplate. Now before I can build my solution successfully, I need to add a project reference from one of the projects to ...
0
votes
0answers
33 views

Error on EnvDTE.Build() (HRESULT 0x80010108)

I have quite a large solution that a smaller software controls. It adds/removes projects, gets updates from SVN, updates assemblies and so on. The final process is to build it, but I keep receiving ...
1
vote
1answer
76 views

Get all methods that are decorated with a specific attribute using T4/EnvDTE

I'd like to get a list of all public methods in my project that are decorated using MyAttribute using T4/EnvDTE. I know this can be done with reflection, but I don't want to load the assembly and ...
0
votes
0answers
54 views

Recursively traversing a Visual Studio Solution using PowerShell

I need to programatically extract information from a solution which contains almost 150 projects in it. The solution file is not flat though, so some of the projects are organized into folders, the ...
1
vote
1answer
39 views

Execute an action on save in Visual Studio 2012

In Visual Studio 2012, I found it is possible to use DocumentSaved events from DocumentEventsClass. So I have written the following code in PowerShell. $DTE.Events.DocumentEvents($DTE.ActiveDocument) ...
0
votes
2answers
70 views

Is it possible to test for an interface implementation using EnvDTE.ClassInfo objects

All, I have a T4 template that generates boiler-plate code that handles my property-changed notification and automatically registers dependancyproperties for me based on attributes I have assigned to ...
0
votes
0answers
18 views

How to get recently used debugging engines

I need to attach to some processes using Attach2 method from Process2 interface, to which I want to pass recently used debugging engines (or just a collection of BSTRs): ...
1
vote
1answer
40 views

Get all projects fron solution throws error

I am in debugging, I got the reference to current solution as DTE2. (as from "adabyron") I often got the following error when I tried foreach loop on vsSolution.Projects: The message filter ...
0
votes
0answers
13 views

Exclude EnvDTE from application

I used EnvDTE to create a custom control, but while loading the control into an application the EnvDTE is also added to the application's reference. But it is not needed in the application as it can ...
0
votes
1answer
43 views

How to register mouse hover event over Visual Studio menu item?

I'm writing VSIX plugin. I've created an icon on Visual Studio standard toolbar. My custom command is attached to it: var mcs = GetService(typeof(IMenuCommandService)) as OleMenuCommandService; var ...
0
votes
0answers
82 views

Trying to programmatically create visual studio solution and project

I am trying to create a visual studio solution programmatically, and add a web service project to it using a template. I am able to get the solution, with the project, created - however I am getting ...
0
votes
1answer
44 views

Adding a Property to ENVDTE.Project

I'm trying to work on a Visual Studio Extension that needs to add a property that gets persisted to the current csproj file like so: <?xml version="1.0" encoding="utf-8"?> <Project ...
0
votes
0answers
41 views

Getting a list of file links from a Visual Studio project

I am trying to put together a T4 template that will walk the structure of the project it lives in. I have been able to get access to the solution and project and get a list of files and directories in ...
0
votes
0answers
28 views

How can I set the selected index of a DropDownCombo in a VSPackage?

In my VS extension, I am populating a combobox with values (the combo is a DropDownCombo stereotype). The user selects a value and some action occurs. That part is working properly, my extension ...
1
vote
0answers
21 views

Using DTE Automation, how can I change the Platform

I'm using VS 2012 and am trying to use DTE to change the configuration to Release and set all Project's Target Platform to Any. Can anyone tell me how can I change the Platform, as the property is ...
1
vote
0answers
60 views

Capture VS Static variables while debugging in EnvDTE

The DTE object provides a way to capture all the variables that are in scope: dte.Debugger.CurrentStackFrame.Locals. What method can I use to list all the static variables?
1
vote
0answers
73 views

Collect attribute property values

I apologize in advance if this gets a little convoluted. I have an attribute class like so: [AttributeUsage(AttributeTargets.Property, AllowMultiple = true)] public class ...
1
vote
0answers
71 views

Is there a way to select a project using ENVDTE?

I want to add a Service reference to a project using ENVDTE. The only way is by the following command which pops up the Add service Reference window: ...
0
votes
0answers
77 views

Env.DTE usage on Visual Studio 2012 throws sometimes MK_E_UNAVAILABLE

I am using Visual Studio 2012 I have a T4-Template within a project to generate Code from existing Code. For that, i use the Visual Studio Env.DTE-API. The same error as discribed will be thrown in a ...
0
votes
1answer
65 views

EnvDTE VS 2012 ProjectItems.AddFolder

I am recreating an AddIn project that I had in VS 2010 and a basic function like adding a folder to the project is not working. Giving me: The kind 'vsProjectItemKindPhysicalFolder' passed to ...
0
votes
3answers
131 views

Compile typescript file from t4 template

I have created a t4 template which creates typescript dto files based on my c# dtos. During the generation I also want to compile the produced ts files into js files and add them to the solution, just ...
0
votes
1answer
53 views

How to create a WebApi project using DTE?

I'm trying to create a WebApi Project in a powershell script using DTE. When I try to pass the folder name of the project template, I get the following error. PS> $projTplPath = ...
1
vote
1answer
173 views

How to use DTE in PowerShell?

I am trying to use PowerShell to automate the process of creating an n-tier solution based on a seed (think EDMX file or DbContext) configuration. I want to be able to open a skeleton solution, get ...
0
votes
3answers
66 views

How to register key binding code on VSIX package installation

I'd like to add keyboard shortcut to Visual Studio package only once, during its installation. Basically I know how to do it from the package code, for example: var dte = ...
0
votes
2answers
61 views

How to get processes to which debugger was attached to during last debugging session

I'm trying to write Visual Studio package which allows mi attach to processes chosen in previous debugging session. Basically I know how to attach to processes: var dte = ...
1
vote
0answers
55 views

SolutionContext.ConfigurationName set returns E_FAIL

I have the following code in a custom project based on MPF for Projects - Visual Studio 2010: EnvDTE.Project dteProj = CurrentProject(); ...
1
vote
0answers
73 views

Get base constructor parameter from a class

I have a class like this public class cmdGetAllCustomers : CommandBase { public cmdGetAllCustomers(WToken token) : base(token, false, typeof(WCustomer)) { } // ... } I need ...
0
votes
1answer
396 views

Automating Visual Studio 2012 with Powershell, doing it wrong?

I was exploring Visual Studio automation with powershell. At least from what I can find, it seems that powershell is the thing to use to automate visual studio. $dte = New-Object -ComObject ...
1
vote
1answer
110 views

DTE.Solution.SolutionBuild.Build no longer working in VS 2010

I have a VS macro that I've been using for years to build my projects automatically. I'm currently trying out VS 2010 to see if I like it (my regular version is 2005), and one segment of the macro is ...
0
votes
0answers
31 views

visual studio commands with parameters

I have created a VSPackage using wizard that comes with VS SDK. The package defines one command that can be accessed from Tools menu. The package is loading fine, I can execute the command manually, ...
0
votes
1answer
49 views

Document changes before save

I'm using EnvDTE and with that interface I know is document was saved or not (was there any changes). All I want to know now is there any way to get information like: how many lines was added and ...
1
vote
0answers
58 views

How to get EnvDTE.CodeTypeRef from PropertyInfo.PropertyType (System.CodeDom.CodeTypeReference)

I am trying to get an EnvDTE.CodeTypeRef from a PropertyInfo.PropertyType. I have tried the following (EnvDTE.CodeTypeRef)(new ...
0
votes
1answer
102 views

Capture VS local variables while debugging in EnvDTE

Is it possible to capture the debug data that's used by the locals and debug window, using EnvDTE for a .vsix visual studio extension? Or is it possible through another method? I would like to create ...
0
votes
1answer
97 views

detect Visual Studio 2012 version

How do I detect whether Visual Studio 2012 RTM or Visual Studio 2012 with Update 1 is running using EnvDTE? The DTE.Version contains "11.0" in both cases.
1
vote
1answer
145 views

VIsual Studio Plugin to Run T4 on Build

How can I run T4 files in a project via plugin? Any hint / clue? I'm finding the EnvDte documentation to especially scarce. I got to this solution because I need to run my T4 templates on build ...
2
votes
0answers
63 views

Visual Studio - get the command line that will be called when selecting a build

I am looking for a way to determine the command line used by visual studio when selecting: Build Solution ==> Main Menu -> Build -> Build Solution Build Selection ==> Main Menu -> Build -> Build ...
0
votes
1answer
91 views

DTE - Reading ProjectItem.FileNames in powershell

I am trying to something pretty simple in powershell, I have instance of ProjectItem and I would like read the value of the FileNames property (documented as a string array). However its proving to be ...
1
vote
2answers
341 views

Collect a list of user classes in a project using EnvDTE

I am having a problem creating a way to list all the classes in my project using EnvDTE for templating interfaces using T4 (based on naming conventions), and none of the documentation out there seems ...
0
votes
0answers
133 views

Set Visual Studio 2012 color theme via DTE

Since I am trying to automate some of my standard tasks, I was wondering if it is possible to switch between the default color schemes ("Light" and "Dark" => the schemes that are shipped with VS2012) ...
-1
votes
1answer
120 views

How to cast ComObject to ENVDTE.Project?

I am using the following code : Object projObj = htProjects[selectedNode]; // htProjects is a Hashtable:key-project Name,value-ENVDTE.Project Project selectedProject = (Project)projObj; I am ...
0
votes
2answers
185 views

How to get folders under projects?

I am trying to get a list of projects and folders under it. I am able to get the projects and project-items using: DTE2 dte2; dte2=(DTE2)System.Runtime.InteropServices.Marshal. ...
0
votes
0answers
41 views

Selected projectitem in Check-In dialog

I'm working on visual studio 2010 add-in project in order to add WinMerge diff to the environment. Unfortunately I am using VS 6.0 and I cannot change the compare engine, which looks horrible in ...

1 2 3 4 5