Tagged Questions
VSPackages are software modules that extend the Visual Studio IDE by providing UI elements, services, projects, editors, and designers.
11
votes
1answer
149 views
Making a global exception handler for Visual Studio 2010 VsPackage
In previous versions of Visual Studio, there was a single entry point to an extension (more specifically, an addin), the OnConnect method. From there it was possible to perform all the Visual Studio ...
7
votes
4answers
406 views
Suppress “No Source Available” pane in 2010
Arg! I have a custom "harness" executable running my class library project. Every time I step into the harness's code, I get that "No Source Available" pane popping up. As I know there is no source ...
7
votes
2answers
2k views
How do you get the current solution directory from a VSPackage?
Rephrasing the question to see if I get some views.
Following is how you would get the current solution directory from an add-in:
_applicationObject = (DTE2)application; // retrieved from ...
7
votes
2answers
2k views
“Visual Studio Integration Package” vs “Visual Studio Add-in”: what is the difference?
When creating a new extension for visual studio, there are two project options: "Visual Studio Integration Package" and "Visual Studio Add-in". What is the difference between the two project types ...
6
votes
1answer
527 views
Extending the Visual Studio 2010 editor by adding a context menu item to manipulate selected text
I'd like to create an extension to Visual Studio that will allow someone to select any text in an editor, right-click to get a context menu, and then perform some action on the text by clicking on my ...
4
votes
4answers
79 views
Is there a good way to stream the results from an external process into a Visual Studio output pane?
I have a custom output pane set up in a VsPackage similar to the following:
///--------------------------------------------------------------------------------
/// <summary>This ...
4
votes
1answer
96 views
Question on VS Extensibility Architecture (Package API/ Visual Studio Library)
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 ...
3
votes
1answer
71 views
How to know if a Visual Studio project item is a WebReference
I'm developing a Visual Studio extensibility package. I need to get the files under a project hierarchy using IVsSccProject2.GetSccFiles.
Visual Studio behaves different for an standard folders and ...
3
votes
1answer
161 views
How do you prevent the VS Shell from getting priority on key/command bindings in a VSPackage ToolWindow?
I have wpf a user control that accepts input gestures to perform various commands. In the example image below, the user can press Ctrl+N to execute the New command to create a new item in the ...
3
votes
3answers
453 views
Get file path from Visual Studio editor
I'm developing a Visual Studio Package, written in C#.
How do I get the full path of the active editor programatically?
2
votes
1answer
47 views
Where to find more info on Visual Studio 2010 package development?
I'm trying to find in depth guide on vs package development.
I've tried with a few books (Visual Studio 2010 Package Development by Istvan Novak, ...
2
votes
1answer
209 views
Visual Studio 2010: using a winforms user control in a VSPackage Tool Window
when creating a simple VSPackage with a Tool Window a sample WPF user control is created and added to the Tool Window.
Must this user control be of WPF? i have a winforms user control and, when adding ...
2
votes
1answer
237 views
Getting the dte2 or TeamFoundationServerExt object in a VS Package project?
I am working on a Visual Studio Package project. This project needs a connection to our TFS. To read the current connection, I would need the TeamFoundationServerExt object, which I should be able to ...
2
votes
1answer
357 views
VSPackage: Modify toolbar button text/tooltip at runtime
I have been developing a Visual Studio extension as an Add-in for VS2008/2010. The new version now is to be done as a VSIX package for VS2010 only (as it has to be .NET 4 anyway), and I am having some ...
2
votes
2answers
202 views
Changing the config file in a Visual Studio Package
I'm building a Visual Studio Package and associated with it, I have an app.config file (which contains some information about connecting to a WCF service).
As far as I can tell, this package is ...
2
votes
1answer
929 views
Finding a ProjectItem by type name via DTE
Given a type name, is it possible to use DTE to find the ProjectItem that the type is located in? Something similar to how the Navigate To... dialog works in Visual Studio 2010.
The closest I could ...
1
vote
1answer
17 views
Find where in document user clicked in Visual Studio Extension Context Menu
I want to be able to find where the user clicked in the document to bring up the right click context menu. Basically i want to be able to see the exact position of the cursor under the click.
I am ...
1
vote
1answer
29 views
Access current code pane in Visual Studio Extension
Im writing a visual studio (2010) extension with a right click menu whilst in a code view. I want to be able to examine the current code from my menu item event handler but havent been able to find ...
1
vote
0answers
31 views
DTEEvents.OnStartupComplete event not working for VSPackage (VSSDK2010)
In the Package constructor I added the event handler for OnStartupComplete event. But when I run the code, the the event handler is not called. What am I doing wrong?
1
vote
2answers
94 views
How to get IVsBuildableProjectCfg to subscribe to build events?
I am trying to get an instance of the IVsBuildableProjectCfg object, but I have no clue how to get it.
I currently can get the DTE Project and/or the IVsHierarchy object representing each active ...
1
vote
1answer
100 views
How do you enable drag and drop within a VSPackage ToolWindow?
I have a WPF user control that provides drag and drop functionality within that control. When the user control is hosted within a WPF app, all works fine. However when it is hosted within a ...
1
vote
0answers
236 views
Resolve dependencies with Castle Windsor using MEF in Visual Studio 2010 addin
I was wondering if there were best practices about using Castle Windsor with Visual Studio 2010 addin, which uses MEF internally to instantiate its controls, such as the IWpfTextView.
All the ...
1
vote
0answers
88 views
ToolStripContainer in VSPackage
I have a VSPackage that has a couple of tool windows in it. As you will know tool windows derive from a class called WindowPane which is completely different from the standard Form class.
In my tool ...
1
vote
0answers
111 views
Register a Visual Studio 2005/2008 package
I have an existing VSPackage that was originally developed in Visual Studio 2005. Since then the package has been converted into a Visual Studio 2008 project but still retains compatibility with ...
1
vote
1answer
289 views
get the text under the mouse pointer
i am relatively new to C#. can anybody please tell me how to display the tool tip on the text editor...just as VS intellisense expands a particular method when we move the mouse over it??? Since i am ...
1
vote
1answer
133 views
Can a VS2010 VSPackage project be installed to VS2008?
I am wondering whether the result VSIX artifact of a VSPackage project created and written in Visual Studio 2010 can be deployed to Visual Studio 2008 - provided, of course, that the package does not ...
1
vote
1answer
681 views
How do you cancel a ToolWindowPane or Visual Studio IDE close operation via a VSPackage?
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 ...
1
vote
1answer
53 views
How to watch the built-in editors in a VSPackage?
I have been reading the MSDN documentation on VSPackages about the editors and so-forth, but I am failing to see anything in the samples or on MSDN regarding watching the built-in editors from a ...
1
vote
1answer
642 views
Modifying app.config file with Visual Studio Extension
I am trying to create a Visual Studio Extension (either Add-In or VSPackage) that will do the following:
1) Find all selected projects in the current solution.
2) Obtain access to each project's ...
0
votes
0answers
12 views
How to manually register the VSPackage installed via MSI at localAppData location
I created a VS package and trying to install it via MSI. I don't want to use .vsix file, so deploying the required files to %localAppData%\Microsoft\VisualStudio\10.0\Extensions. will install the vs ...
0
votes
0answers
33 views
How Visual Studio loads controls in toolbox
Visual Studio can load a variety of controls, from html controls to windowsforms controls to WPF/Silverlight controls.
Does anyone knows how the Visual Studio loads all these controls to the toolbox?
...
0
votes
1answer
29 views
Handling Visual Studio 2010 events
Is it possible to handle Visual Studio events?
For example, to perform some operations when the user opens the Toolbox.
Using VS2010 SDK how can I do something like this?
Also, how do i know that ...
0
votes
1answer
18 views
COM Access Violation in visual studio 2010 package on UIShell::ShowContext
I'm rather stuck with a problem I found while attempting to port a package from visual studio 2008 to 2010 and wondered if anyone would have any ideas please note this worked in visual studio 2008 and ...
0
votes
0answers
31 views
Why can't VS create a VSPackage project with a Custom Editor?
I am trying to create a VSPackage project (using the Visual Studio 2010 SP1 SDK), which works perfectly when I don't add a Custom Editor. But when I do, it's stuck at "Creating project VSPackageX..." ...
0
votes
1answer
46 views
How do I subscribe to solution and project events from a VSPackage
I'm developing a language service for Visual Studio through a VSPackage. I need to update my parse data whenever files get added/removed from the solution's projects.
I want to subscribe to solution ...
0
votes
1answer
96 views
Error trying to read the VSIX manifest file… The system cannot find the file specified
I am trying to build a Visual Studio Package project via Hudson CI. This is a Visual Studio 2010 project. The project builds fine in my dev box, but for some reason, I keep getting the following error ...
0
votes
0answers
47 views
Refreshing Visual Studio Output Window
I have some C# code writing progress messages to a Visual Studio 2010 EnvDTE.OutputWindowPane. The code is invoked from a Visual Studio menu (it's in a VSPackage).
The problem is that the output ...
0
votes
0answers
23 views
How can i load a VSPackage with a PLK
Hi all i create a VsPackage that i wan't to deploy. In the experimental hive everything works fine, but when i try to use the PLK obtained in this site: ...
0
votes
1answer
371 views
How can i retrieve devenv.exe path for a vspackage installation?
I'm following this tutorial http://msdn.microsoft.com/en-us/library/bb458038.aspx to create a VsPackage Setup. In the part of the creation of an installer class appears a reference to this location in ...
0
votes
2answers
204 views
Adding menu item in VS Extension through DTE doesn't fire Click handler
I am trying to dynamically fill the Solution right click menu with menu items from VS Package (Extension).
I have a extension menu with name "MyMenuName" and I am adding menu items there.
Here is ...
0
votes
0answers
34 views
Is it possible to Add/Read Breakpoint Labels in VS 2010 programmatically in VSPackage?
I’m looking for some way to read the “Breakpoint Labels” programmatically in break mode. My Package user can add and the “Breakpoint Labels” manually and then VSPackage can read it when breakpoint is ...
0
votes
1answer
172 views
Visual Studio - Move cursor without losing focus
I have some tool windows in my package and I would like to bring a specific point in the document into view when the user performs some actions in the tool windows.
I've tried the following code:
// ...
0
votes
3answers
968 views
“Exception has been thrown by the target of an invocation.” when building a Visual Studio 2010 VSPackage
I recently create a couple of VSPackages for some Visual Studio extensions (menu bar/command). I compiled them correctly yesterday, checked into TFS (i'm the only one touching this project, FYI). I ...
0
votes
1answer
197 views
How to debug a VSPackage project
I installed the VS2010 SDK and created a VSPackage project, with an empty "Initialize" method.
[PackageRegistration(UseManagedResourcesOnly = true)]
[InstalledProductRegistration("#110", "#112", ...
0
votes
1answer
236 views
VSPackage: How to get selected file when there is no “real” solution opened
I'm developing a VSPackage in C#, and I would like to know how to get the current file, when only a single file (or several files are opened in Visual Studio).
All works fine when there is a ...
0
votes
1answer
103 views
Visual Studio extension
I would like to add a menuitem to the context-menu of a "Service Reference"-item and the context-menu of the "Service References"-folder, but I can't seem to find the right ID to list as the parent.
...
0
votes
1answer
80 views
developing a custom text marker
i am trying to develop a custom text marker to visual studio...just like break point setting tool..i have no idea to do it...can you please provide me with valuable tips and some learnning matrial ...
0
votes
1answer
90 views
Can a Visual Studio 2010 Package be installed in Visual Studio 2008?
I wanted to have a Visual Studio package that is loadable in VS2008. To do so I've followed these steps:
Created a new package project in VS2008 and made sure it loads fine
Ported the project to ...
0
votes
1answer
69 views
VSPackage load order - load before another VSPackage?
How do you create a VSPackage that has a dependency on functionality in another VSPackage? In other words, if I have VSPackage A that exports a certain feature that I need in VSPackage B, how do I ...
0
votes
1answer
706 views
How to deploy and register a VSPackage supporting multiple versions of Visual Studio (2005, 2008, 2010)?
I have an open source VSPackage that I would like to release with support for Visual Studio 2005, Visual Studio 2008, and Visual Studio 2010. I'm trying to figure out how to create the installer and ...