0
votes
1answer
21 views
Best Practice for Obfuscating a C# Visual Studio DSL Solution as VSIX
I was wondering if anyone has any advice for obfuscating a DSL?
Background - We have created a DSL which we will putting into the Visual Studio Gallery as a VSIX file.
We already …
0
votes
1answer
52 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
53 views
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 …
1
vote
2answers
148 views
Compiling pages with custom extension (for ex .custx) as if they were .xaml files in Visual Studio
In a VS Package (Visual Studio Extensibility), I have a custom extension registered (for ex ".custx") with XamlLanguageService, so that in Visual Studio when the user opens .custx, …
0
votes
1answer
31 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
2answers
82 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
146 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
35 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 …
6
votes
5answers
511 views
Visual Studio Extension to map Solution Folders to Real Folders
In an earlier question, I've found out that sadly Solution Folders are not real folders inside a directory.
I wonder if there is an AddOn or Macro that adds this functionality? i. …
0
votes
1answer
83 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 …
0
votes
2answers
217 views
Why does not Visual Studio display warnings generated by the #warning directive (CS1030)?
Edit: I reported this as a bug on the Microsoft Connect site here.
Edit 2: Microsoft will not fix this bug (at least not in VS2010).
User defined warnings are only shown in the E …
0
votes
2answers
35 views
How can I cancel a Visual Studio NewPendingChange event?
I'm trying to programmatically intercept and cancel a user's attempt to check out a file in TFS.
Am I correct in thinking that the proper way to go about this would be to handle …
1
vote
4answers
99 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 …
9
votes
3answers
789 views
Tool in Visual Studio 2008 for helping with Localization
Hi,
Does anyone have any recommendations of tools that can be of assistance with moving literal values into resource files for localization?
I've used a resharper plugin called R …
0
votes
1answer
34 views
Right way of working with connectMode for VS add-ins
Can someone point me to a guide on how to interpret the connectMode parameter that gets passed when a VS add-in is loaded?
