1
vote
1answer
16 views
Visual Studio extension: splash info not showing
I'm building (read: trying to build) a Visual Studio integration package, which contains some custom highlighting and intellisense. The language part is working fine, the package is being loaded in …
0
votes
1answer
24 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 use dotfuscator for …
0
votes
1answer
69 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 able to debug this app …
0
votes
1answer
33 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 inside their Visual …
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 generates. I know I can …
0
votes
1answer
60 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
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 control or a standalone …
0
votes
1answer
90 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 not get a value and …
0
votes
2answers
36 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 the NewPendingChange …
0
votes
1answer
157 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 into my ItemTemplates …
0
votes
0answers
32 views
How to capture the mouse click event in VS2008 by ENVDTE?
I'm writing an add-on (by the format of VSPackage) for Visual Studio. One of the designed feature is: when user left-clicks in the area of text editor or presses up or down key to move to a new line, …
0
votes
1answer
91 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 perform a custom …
0
votes
0answers
39 views
Visual Studio SDK - Getting notified when a project item in your package’s vsx project has undergone undo checkout?
We are working with Visual Studio SDK, creating a package. We need to get notified when a file (projectitem) gets undo checkout from TFS.
Any solutions/pointers are appreciated.
1
vote
1answer
49 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 output path for …
0
votes
1answer
64 views
Visual Studio addin - catch “SelectionChanged” (editor) event
Hey.
I'm trying to catch all user text navigation events (selection changes) in the text editor to update a tool window (contextual to the current position).
The "LineChanged" event under …
