VSPackages are software modules that extend the Visual Studio IDE by providing UI elements, services, projects, editors, and designers.
1
vote
1answer
43 views
VS 2012 Bug? - Driver Package Project does not always use Output Directory
In the process of moving my driver project to WDK8 and Visual Studio 2012, I came across a minor issue regarding the driver package output directory configuration. Fortunately, it is easy to ...
0
votes
0answers
17 views
How to get recently used debugging engines
I need to attach to some processes using Attach2 method from Process2 interface, to which I want to pass recently used debugging engines (or just a collection of BSTRs):
...
0
votes
1answer
40 views
How to register mouse hover event over Visual Studio menu item?
I'm writing VSIX plugin. I've created an icon on Visual Studio standard toolbar. My custom command is attached to it:
var mcs = GetService(typeof(IMenuCommandService)) as OleMenuCommandService;
var ...
0
votes
0answers
18 views
Pass data from ะก++ program to VSPackage plugin
I'm writing a program in Visual Studio 2005. (C++ non managed).
I want to write a function that sends data to VSPackage plugin.
The good example of it is a "OutputDebugString" function.
This function ...
2
votes
1answer
74 views
VSIX package build failed without showing the reason (Visual Studio bug)
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 ...
0
votes
0answers
27 views
How can I set the selected index of a DropDownCombo in a VSPackage?
In my VS extension, I am populating a combobox with values (the combo is a DropDownCombo stereotype). The user selects a value and some action occurs. That part is working properly, my extension ...
0
votes
2answers
45 views
how to get the selected connection node object of VS Server Explorer window DDEX
I'm adding some options for the Connection Node in the server explorer for my VS extension. For one of the menu options that I have added I need to get the connection string of the very selected ...
0
votes
1answer
30 views
Highlighting code window of visual studio based on line number using VSPackage
I'm building a VSpackage extension to create "VisualStudio Tool Window".
I have a grid inside tool window, consisting of numbers. If a user selects a particular row of the grid. That particular line ...
0
votes
2answers
57 views
Highlighting code window text from Visual studio tool window using VSPackage
I'm kind off new to the Visual Studio Extensions. Is there a way to interact to code window from Visual Studio 2010 tool window.
I have a Datagrid hosted on the VisualStudio tool window. DataGrid ...
0
votes
3answers
61 views
How to register key binding code on VSIX package installation
I'd like to add keyboard shortcut to Visual Studio package only once, during its installation. Basically I know how to do it from the package code, for example:
var dte = ...
0
votes
2answers
61 views
How to get processes to which debugger was attached to during last debugging session
I'm trying to write Visual Studio package which allows mi attach to processes chosen in previous debugging session. Basically I know how to attach to processes:
var dte = ...
0
votes
0answers
50 views
Adding a custom menu item to the project node of a c application using vsct not working
I am trying to add a custom menu item to the right click of the project node of my c++ project. I have added the following menu xml code to my *.vsct of my VSPackage.
<Menu ...
0
votes
0answers
63 views
Deploying Application that use SWI-Prolog without installing SWI-Prolog
I create a VS-Package application (.vsix) that uses SWI-Prolog inside it.
My question is: how can I deploy my VS-Package application (VS 2012) without requiring the user the run the SWI-Prolog ...
1
vote
1answer
83 views
How to Detect if Visual Studio IDE is closing using VSPackage?
I'm writing a VS Package where I need to store the time when the user start my package, and when the user close the Visual Studio.
The problem is, I don't know how to get the closing event for the ...
0
votes
0answers
43 views
How to refresh Visual Studio settings after setting a value in a VSPackage
In a Visual Studio extension I have defined a VSPackage with a number of commands in it. In the handler for one of the commands, I set a user setting using the following code:
SettingsManager ...
0
votes
0answers
50 views
SolutionEvents Opened event isn't fired (vs extensibility)
I'm actually working on a vs2010 tool window (package), and I need to know when a solution has been opened.
I looked at this post, seems like I do the same thing but the Opened event is never fired...
...
0
votes
1answer
92 views
State driven menuitem in Visual Studio 2012 extension
I am writing a Visual Studio 2012 extension that defines several sub-menus to go in two existing Visual Studio context menus. The sub-menu items appear to work correctly except for one thing:
Until ...
0
votes
1answer
52 views
Unable to set certain Find Options in VS 2012 Extension
I'm trying to open the find dialog in my VS2012 extension but I'm unable to set any options other than the find text:
var dte=(_DTE)Package.GetGlobalService(typeof(_DTE));
...
1
vote
1answer
23 views
Overriding the VS2010 Project Invalidated (refreshed) event
I'm trying to override VS2010 behaviour when an external program makes changes to the project or solution files. Atm VS throws a popup asking if you want to reload/save the project files.
I've ...
-1
votes
1answer
72 views
Visual Studio Tool (SDK) - How to select files (sources files or other file) [closed]
I'd like to develope a tool for myself using the SDK of Visual Studio 2008. Since my project contains a lot of file, I am making a tool/command that select the file in the solution explorer (like a ...
0
votes
3answers
82 views
Obtaining Solution Name in ToolWindow of VSpackage
I'm new to Visual Studio Extensibility Framework to use VSPackage Extension. I want to obtain a DTE Object inside the user-control which is called inside MyToolWindow class.
I tried all the below ...
0
votes
1answer
63 views
Distributing a Visual Studio Isolated Shell application
I'm thinking about implementing an application using the Visual Studio isolated shell. The way to include the dependencies is including the Visual Studio isolated shell redristibutable package, but ...
0
votes
0answers
62 views
How to highlight a text in the opend file from vspackage?
I have developed a vspackage which scans all the files in the project and lists the classes and methods each file contains in a tool window.
Now when user dbclicks the method name in the tool window, ...
1
vote
1answer
442 views
VSIX - Cannot load file or assembly of a referenced dll
My question is very similar to this one, only that the answer and work-around are not working for me. Also I am in Visual Studio 2012.
I have a VSPackage which is referencing another project, which ...
0
votes
1answer
59 views
Marking the entire line using Visual Studio Editor Extension Points
I would like to mark an entire line on the editor according to some logic in my VSPackage.
So I exported IClassifierProvider and EditorFormatDefinition and succeeded marking the relevant line by ...
0
votes
0answers
93 views
Add context meu item to all files and folders in the solution explorer using vspackage
I want to add a menu item to the context menu of all the files and folders in the solution explorer. I was able to add my menu item to the project node with this entry in the vsct file..
<Menu ...
0
votes
0answers
84 views
Pros/Cons of writing a VSPackage with C++/C#
Does the C# API expose everything the C++ API does? It seems counter intuitive, but I actually read that the c++ API exposes less features of the VS Platform API than the c# API.
I'm looking to write ...
1
vote
1answer
115 views
How to get the details of the selected item in solution explorer using vs package
I am trying to create a VS package in which, i have added a menu command to the context menu you get when you right click an item in solution explorer. Now on clicking the command i want to show a pop ...
1
vote
0answers
20 views
How to launch “New Project Dialog” from VS package
I need launch visual studio new project dialog from within my vspackage. And i can't find info about how i can do this yet. So my question is - how? And generally this question is not only about "new ...
0
votes
1answer
95 views
How can i get build/rebuild realtime output
I'm making Visual Studio package where i start devenv.exe and try to build other solution.I need to get building output in realtime, so user can see buiding progress(output), but i don't know how to ...
0
votes
1answer
133 views
How to get current solution configuration in vspackage?
I'm making Visual Studio package, and i need to know opened solution name and configuration. How can i get this information ?
Thanks
3
votes
1answer
267 views
Method or operation not implemented error on Binding
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 ...
0
votes
0answers
50 views
Developing Shared VSPackage
We're developing a VSPackage targeting Visual Studio 2010 and 2012, and we plan to choose the shared VSPackage route as mentioned here http://msdn.microsoft.com/en-us/library/bb166545.aspx. We're ...
0
votes
0answers
40 views
Does Visual Studio 2012 SDK supports CTC file types?
I have a vspackage which should work get loaded in VS2012, however it is not working.
One thing I changed is to modify the VSSDK dependency of my vspackage project from Vs2005SDK to VS2012SDK.
I had ...
0
votes
0answers
107 views
Creating a main menu entry for VS2012 is failing
We are using the old school way of creating menu entries and items for VS2012 using the Command Tale Configuration files.
This has worked fine in VS2005, VS2008 and VS2010. In VS2012, I have seen the ...
0
votes
0answers
118 views
Visual Studio 2012 package load fails and no log either
I have a VSPackage that should have loaded fine when VS2012 starts. But for some reason, it is not loading the package. I should at least expect the log to contain any errors. But ther is no log file ...
2
votes
3answers
160 views
XamlParseException when using Graph# libraries
I'm trying to use the Graph# libraries in my VSPackage project, but unfortunately there are some obstacles to conquer. Here is what I did:
I copied all the following DLL's to a folder /Libraries in ...
0
votes
1answer
66 views
VS package deployed not showing up in package load analyzer
I developed a vspackage. To deploy I have followed the steps in the MSDN Walkthrough: Deploying a VSPackage. After following the walkthrough, my package does not show up in the Package Load Analyzer, ...
0
votes
0answers
45 views
VSPackage Compatibility across versions of .NET and Visual Studio
I am writing a VSPackage for custom control so that it will be installed to Visual Studio Toolbox.
The problem is that Visual Studio Package Template creates a project for .NET Framework 4.5 and most ...
3
votes
0answers
48 views
How to get call relations of an open solution by using a plugin
I try to develop a VSPackage for VS 2010 that investigates all the available methods in the current solution and to reconstruct the call relations of each single method just like the built in Call ...
0
votes
0answers
97 views
VSPackage - Dynamic ToolWindow Toolbar ComboBox width
I have come across this annoying problem with VSPackage's ToolWindow ToolBar. I successfully added several comboboxes in VSCT file - they are visible, their items are displayed and everything seems to ...
2
votes
1answer
105 views
Visual Studio 2010 Extensions - Custom Editor for when a class extends a specific type
I am attempting to create a GUI game designer as an extension to Visual Studio 2010 and am looking at using custom editors used with project and item templates to build this functionality ontop of ...
0
votes
0answers
62 views
VS2012 IVsSolution.GetUniqueNameOfProject problems
Calling IVsSolution.GetUniqueNameOfProject from a worker thread fails. It works calling the method from the main thread. Same code worked just fine on VS2012.
Has anyone encountered this problem? ...
1
vote
1answer
253 views
Setting MSBuild 'Condition' attribute via Visual Studio extension
I have a C# project which is built in a few different configurations. Some of the source files should be always included, and some only in certain configurations. So far I've been doing this with #if ...
0
votes
1answer
332 views
How do I programmatically refresh/reload a VS project after modifying the underlying file?
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 ...
2
votes
1answer
388 views
VSIX Package doesn't include referenced project's dependencies
We have a visual studio package (VS Package) that references a class library project (Project A). Project A in turn references another class library project (Project B).
So the dependency structure ...
2
votes
0answers
67 views
OnEnterRunMode in VSPackage not work
I am developing an Extension (VSPackage), I am subsribing to 2 of the Debugger events in the cunstructor of VSPackage.cs
public sealed class ComboBoxPackage : Package
{
....
public ...
0
votes
0answers
101 views
how to make a designer/editor like the wpf-Designer/aspx-Designer in VS2010 using vsPackage
I'm searching for a way to implement a designer/editor like the wpf-Designer/aspx-Designer in VS2010. We use a custom XML-based format and want to edit it graphically.
(I want implement using the ...
0
votes
0answers
42 views
how to extend layout window wpf using vsPackage
I want implement a VSPackage 2010 that have such as the controls into toolbox Window with their properties abou in property window and a widnow for page layouting in WPF
1
vote
3answers
267 views
How do I programmatically add a file to a Solution?
I am developing a VS Package and part of the functionality that I need to implement is to add a file to the Solution Items of the currently open Solution.
This is exactly the same action that would ...

