0
votes
0answers
16 views
+100
VSX: Custom Package’s Project Type to mimik “Debug >> Start Action >> Start External Program”
I have a custom project type based on the C# Class Library project type in a VSX Package (2008+). For this project type, even though the output is a class library, I want to be ab …
0
votes
2answers
78 views
C# CodeFunction2 - How do you prevent creation of ‘return’?
I am creating a C# class as per:
http://msdn.microsoft.com/en-us/library/x6h10s6x.aspx
however I want my own 'return' rather than the return default(int); it automatically gener …
0
votes
1answer
20 views
Opening a file from TFS using the full TFS Path, from a web site
So I have a website running that displays full path of a TFS File on the page somewhere, I want the user to be able to click on it, which should then open up that file from TFS ins …
0
votes
0answers
28 views
Can you programatically execute ‘Run Custom Tool’ on a ProjectItem in C#?
I was wondering if it is possible to execute 'Run Custom Tool' on a file in the VS Solution? I have the ProjectItem object already.
info: C#, Visual Studio 2010 SDK
0
votes
1answer
30 views
Visual Studio style editor for an application-specific scripting language?
Right now I only know about Visual Studio 2008 Shell and the custom control used in the Snippet Compiler.
Also is VS shell suitable for this job? I don't know if it's a custom con …
0
votes
1answer
117 views
Creating a item template for Visual Studio 2008, with file-dependencies, is it possible?
I have a template that adds a new entry to the "Add->New item" right-click menu on a project in the solution explorer in Visual Studio.
I have already built the template, put it i …
0
votes
1answer
63 views
e.data.GetData is always null
I am working with Visual Studio 2010, developing an Extension
I need to drag and drop from a WPF TreeView in a Toolwindow onto a DSL Diagram but when I call e.data.GetData I can n …
1
vote
4answers
96 views
Can you process T4 templates from inside a .NET application?
Can you process T4 templates from inside a .NET application? Is that code available to be called? included in a project? licensing?
update: so it does look like you would have to …
1
vote
4answers
241 views
Open a VS 2005 Solution File (.sln) into memory
I would like to open into memory an existing .sln file.
Example of a non-working method:
private Solution2 OpenSolution(string filePath)
{
Solution2 sln;
sln.Open(filePat …
5
votes
3answers
197 views
Should a new Visual Studio-Based Application be based on 2008 or 2010?
I am thinking of creating a product based on the Visual Studio Shell (primarily isolated mode). Since Visual Studio 2010 will most likely be RTM before my product, does it make sen …
0
votes
1answer
71 views
How to access selected project in Solution Explorer from a Visual Studio Add-In?
I developed a VS 2008 add-in and added a custom menu item to context menu for "Project" nodes in Solution Explorer.
This allows me to right-click any project in solution and perfo …
0
votes
2answers
132 views
Creating a Visual Studio Tool Window - VsAddin or VsPackage
Hey Folks.
Simple question - I found two ways to add a tool window to Visual Studio (2008): create an addin or create a package.
(Addin: http://www.codeproject.com/KB/dotnet/vsto …
1
vote
1answer
259 views
MVC T4 MvcTextTemplateHost and Customized “Controller” T4 Template
I am creating my own custom T4 Template that integrates with an ADO.NET Entity Framework Model (.edmx file) included in my MVC Web Application.
For Reference
Please take a brief …
1
vote
1answer
48 views
Resolving problems with DSL SetUp project
I'm fighting with the InstallerDefinition.dslsetup file in a DSL setup project. I'm getting the following error:
Running transformation: The setup project could not retrieve the o …
2
votes
2answers
272 views
Visual Studio 2010 addin writing articles/tutorials?
Does anyone know of some good articles / tutorials on writing addins/plugins for Visual Studio 2010?
