Tagged Questions

1
vote
2answers
72 views

How to create CodeFunction2 with IEnumerable<> Type?

Hi All, 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 …
0
votes
1answer
30 views

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

Hi all, 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 …
4
votes
1answer
418 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: …
0
votes
2answers
106 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
0answers
28 views

How to get [#]region structure from (Document, ProjectItem, FileCodeModel in EnvDTE)

Hi to all, I'm developing the integrated Package which show structure of code (C#, VB) in TreeView of my control window. I found a SourceCodeOutliner project in …
0
votes
0answers
46 views

How can you add code to a Designer.cs file using the DTE classes?

I'm writing an IWizard Item Template, which will be adding code to a Form.Designer.cs file that already exists in the project, but I can't find a way to force new code to write to that file, rather …
0
votes
0answers
33 views

EnvDTE.CodeClass.Base.Fullname does not give proper name for VB types

Public Class c1(Of T) End Class Public Class c2 Inherits c1(Of Integer) End Class For the following peice of code, if we try to get the CodeClass.Base.Fullname, it gives the fullname as "c1(Of …
0
votes
0answers
45 views

Is there an elegant way to make a EnvDTE.CodeProperty ReadOnly?

I need to switch my CodeProperty between read only and read / write. I can achive this with Edit points and ReplaceText so: if(readOnly) { CodeFunction setter = codeProperty.Setter; TextPoint start …