vspackage Questions
7
Solved
How can I check/detect which Visual Studio version is running under my VSPackage?
I cannot get from the registry because the computer could have several versions installed, so I guess there is an ...
Agentive asked 18/6, 2012 at 12:3
5
I would like to create a Syntax Highlighter in Visual Studio 2012 (and above) that supports different themes (Dark, Light, Blue).
Visual Studio's Editor Classifier project template explains how to...
Duong asked 25/6, 2014 at 9:6
3
Solved
I am writing a VSIX project and I would like for the code to be able to determine whether an update is available.
I know Visual Studio would be able to check for the update, however, I would like ...
Zincate asked 26/3, 2014 at 15:42
3
Solved
Today the VSPackage I'm developing failed to load, and Visual Studio prompted me to check ActivityLog.xml. It also asked "continue to show this error message?" And accidentally I pressed no.
The w...
Tabes asked 30/10, 2014 at 17:42
2
Solved
I'm trying to create my first extension for visual studio and so far I've been following this tutorial to get me started (http://www.diaryofaninja.com/blog/2014/02/18/who-said-building-visual-studi...
Ormiston asked 8/1, 2016 at 12:35
2
Solved
Recently I found the above displayed Visual Studio Extensibility Platform chart from microsoft.
Most of the things are clear to me. However, I am wondering about the Package API and the VSL (Vi...
Rife asked 1/4, 2011 at 12:58
2
I am developing a Visual Studio package and I have written some code that will make a file in Solution Explorer dependant upon another file.
What this means is that it gives them the same relation...
Unholy asked 7/9, 2012 at 14:54
4
I already have a package that I created, and I'd like to add a menu to the Code Window context menu.
After a little search I found several articles explaining how to do it. The problem is, I can't...
Panettone asked 30/5, 2013 at 17:49
3
Solved
Following is how you would get the current solution directory from an add-in:
_applicationObject = (DTE2)application; // retrieved from OnConnection method
string solutionDir = System.IO.Path.GetD...
Affective asked 25/2, 2010 at 19:9
5
I've got an addin that I developed and used with earlier versions of Visual Studio,
and I've managed to develop an interface between it and a VS Package for VS 2015.
From my "Command" class, I have...
Wunderlich asked 20/4, 2016 at 5:16
1
Solved
I create top level menu with name "CustomMenu" from extension project and also create another top level menu with same name from another extension project.After I install both extension menu shows ...
2
Solved
I'm trying to create a Visual Studio 2017 extension, just for fun and to learn how VS extensibility works.
My extension must be usable from the Solution Explorer tab as a context menu button, but...
Interrupted asked 22/8, 2018 at 12:33
2
I'm currently developing a Visual Studio plugin (VSPackage) which finally should be able to visualize call relations. In order to represent them I want to use the Graph# library which manages the g...
Itching asked 22/10, 2012 at 7:56
1
I have defined a dynamic combo for a toolbar in a VSIX package for Visual Studio 2015 using this setting in the VSCT file:
<Combo guid="cmdExplorerToolbarSearchGUID" id="cmdExplorerToolbarSear...
Bookish asked 25/1, 2016 at 16:54
5
I'm having this error pop up once I start Visual Studio professional 2013 with update 3.
I don't know whats going on and also when I created a web form and try to put items from the toolbox into a...
Chromo asked 18/9, 2014 at 18:48
1
I'm currently using the new Visual Studio Project System Extensibility library to implement a new project type for VS2015. What I would like to do is change the name of the "category" of that type ...
Carafe asked 27/8, 2016 at 18:20
1
Solved
I recently discovered an extension for visual studio that allows you to specify a watermark for the code window. This extension can be found on github here.
https://github.com/nategreenwood/VSEdit...
Ariew asked 1/9, 2014 at 6:10
4
Solved
How can I get the color scheme programmatically using a VSPackage in C#?
I know that I can use IVsUIShell5.GetThemedColor for VS2011, but I don't know how to get it from VS2005, VS2008 or VS2010.
Stavros asked 11/6, 2012 at 14:13
2
I'm developing a Visual Studio extension in VS2013 but I can get it to load in the experimental instance.
I can install it manually in my current instance (from the vsix file) and it works fine bu...
Massengale asked 16/11, 2014 at 20:26
4
Solved
When I'm trying to open any solutions that worked fine before in Visual Studio 2012, the error "Package 'Visual C++ package' failed to load" keeps showing up. And the solution can't be op...
Nasho asked 23/7, 2013 at 19:43
1
There doesn't seem to be any event in EnvDTE's DebuggerEvents that notifies the consumer when a breakpoint is deleted. I've also looked at Visual Studio SDK and registered an IDebugEventCallback2, ...
2
Solved
I have a VSPackage with a dockable tool window containing form data. If there are unsaved changes in this form, I would like to cancel a close to either the tool window and the visual studio IDE if...
Haddix asked 5/3, 2010 at 7:21
2
Solved
I have to enabled diagnostic mode of MSBuild project build output verbosity to see this:
1>Done executing task "EnableExtension" -- FAILED. (TaskId:81)
1>Done building target "DeployVsixExte...
Humankind asked 1/4, 2013 at 16:36
1
Solved
How can I add a sub menu for the Add menu item when right click on a visual studio solution explorer?
I have to add a single sub menu item which will be displayed n right clicking the visual studi...
Oppose asked 13/11, 2014 at 5:47
1
When working on my library representing geometric objects, Debugging currently looks like this:
Here I am viewing the local variables in the Autos, Locals, Watch and Immediate windows.
As I hav...
Flacon asked 29/9, 2014 at 17:39
1 Next >
© 2022 - 2024 — McMap. All rights reserved.