Tagged Questions
Visual Studio eXtensibility (VSX) is the ability to develop extensions to the Visual Studio IDE from Microsoft. Extensions are developed using the VSSDK.
27
votes
3answers
9k views
Visual Studio 2010 addin writing articles/tutorials? [closed]
Does anyone know of some good articles / tutorials on writing addins/plugins for Visual Studio 2010?
11
votes
3answers
2k views
Tool in Visual Studio 2008 for helping with Localization
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 RGreatX but was wondering ...
10
votes
12answers
769 views
Domain Specific Language resources [closed]
I was just listening to some older .Net Rocks! episodes, and I found #329 on DSLs to be interesting. My problem is that I can't find any good online resources for people trying to learn this ...
9
votes
2answers
656 views
Is it possible to refresh WCF service reference from VS2010 addin?
I want to "simulate" the Right click/Update service reference command in a VS2010 addin. I have a reference to the containing (Silverlight...) project, I know the name of the service reference and the ...
9
votes
3answers
8k views
How do I write to the Visual Studio Output Window in My Custom Tool?
I am writing a custom tool and I currently have it doing what I want as far as functionality. I would like to be able to write to Visual Studio if something goes wrong. (Incorrectly formatted code or ...
8
votes
6answers
1k 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.e. when I create a ...
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
“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
2answers
259 views
VS 2010 Extensibility: Create a extension to automatically wrap selected text (code) in comments and adding a comment above it
I am trying to develop an extension that will work similar to the Comment toolbar button in VS 2010 ... but I want to mark all text as Commented Out and put a comment above it. Heres an example. I ...
6
votes
3answers
346 views
Visual Studio add-in for validating string.Format method
string.Format is a very risky method. There are a lot of thing that could go wrong, without any compilation errors:
string.Format("{0{", text);
string.Format("{1}", text);
string.Format("(0)", text);
...
6
votes
4answers
353 views
Building a Visual Studio Package based on another one
I want to add my own project type based on IronStudio. So,
I downloaded the source for and compiled the latest version of IronPython, then
I created a new Visual Studio Package.
I added the ...
6
votes
2answers
913 views
VS2010 add-in custom menu item in files of Solution Explorer
Hey guys, I need to create a custom menu item for Visual Studio 2010 Add-in in C#, but I have had no luck in finding a solution for my needs.
I am aware that there was a similar post (Visual Studio ...
6
votes
1answer
391 views
How to create custom project that inherits from c# using MPF?
Using Visual Studio's Managed Package Framework, how can I inherit from C# so I can have C# property pages and C# project items? I've tried making a flavored project, but it was limited in terms of ...
5
votes
2answers
371 views
How to write a Visual Studio extension for a template or markup language that supports embedded code snippets
Is it possible to write an extension for Visual Studio 2010 that provides syntax highlighting, intellisense, outlining, etc for a custom template or markup language supporting embedded code snippets, ...
5
votes
2answers
626 views
How to create a new project type in VS2010?
I've figured out how to create a new template, but I need a little more power than that. I need to override what happens when you click the "Run" button for example -- I want it to fire up a ...
5
votes
3answers
202 views
How do you develop Visual Studio Add-Ins?
I have a vague idea Visual Studio allows you to run a second sandboxed instance where the add-in is being in fact loaded. That'd allow you to debug your add-in code and such.
Is this effectively ...
5
votes
2answers
201 views
Extending visual studio
I want to write an AddIn for visual studio (2010). My goal is to add a menuitem to the context menu of all .cs files in the solution explorer. Or maybe just to context menu of the code window, ...
5
votes
2answers
201 views
How can I get a reference to an output stream that writes to the Visual Studio “output” window?
I have a third-party .NET library that enables output of some key diagnostic information to a TextWriter instance. I'd like to have this information dumped to the output window of Visual Studio 2008 ...
5
votes
3answers
246 views
Should a new Visual Studio-Based Application be based on 2008 or 2010?
I am thinking of creating a product based on the Visual Studio Shell (primarily isolated mode). Since Visual Studio 2010 will most likely be RTM before my product, does it make sense to start with ...
5
votes
4answers
968 views
which one to choose? DXCore, Resharper or VSX?
I want to write a visual studio addon to do some code modifications for me (like some specific refactoring). I was wondering which one of these tools should I use and why?
we have licenses for ...
5
votes
2answers
576 views
Any way to make Intellisense work, when opening a cs file that's not part of the project?
What we ideally need is, to know how Microsoft handles XAML generated code (Those *.g.cs files). If you goto a XAML code behind, intellisense will work even if the *.g.cs file is not part of the ...
4
votes
2answers
83 views
Developing multiple Visual Studio 2010 extensions
Im working on a couple of independent Visual Studio extensions in separate solutions. When I open one of them and launch the experimental instance in the debugger, the other extensions from the other ...
4
votes
1answer
529 views
VSX 2010 package loading- Markup.xaml parsing cannot find assemblies
I have built a Wpf UserControl Library and it contains a large group of assemblies and even references two other class libraries and several merged resourceDictionaries. It builds without error. I ...
4
votes
1answer
465 views
Extending VS 2010: to include additional items on Right Click context menu (add) on solution explorer?
I wish to create an additional item on the context sensitive right click "ADD" on the solution explorer in vs 2010.
Basically it currently looks like this
New Item
Existing Item
New Folder
Add ...
4
votes
2answers
369 views
Visual Studio Editor, MEF in-Depth
I have been having difficulty simply writing a Visual Studio Editor Extension with MEF (Managed Extensiblity Framework). I thank those who answered my previous question, as they helped me know that I ...
4
votes
1answer
273 views
Replacing/Extending Visual Studio's Generate Stub in Visual Studio 2010
When we write the name of a method that doesn't exist, Visual Studio 2010 asks us if we'd like to generate a method stub with that name. What I'd like to know if is it possible to replace that same ...
4
votes
3answers
357 views
Is it possible to extend the WPF design surface in 2010? [closed]
I've got an idea for a nice WPF designer extension, but I can't find any information on how to interact with the WPF designer via an extension. Lots of info about the text editor, but none about the ...
4
votes
1answer
539 views
How to create a VS2010 extension that uses Language Services
Creating extensions got much easier with Vs2010, but this seems not to be the case for everything...
My aim: I wnat to make method calls and property uses of STATIC classes ITALIC. (Just like Eclipse ...
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
2answers
105 views
Visual Studio - Make Add-in run automatically after build
I have a c# add-in that I would like to run automatically after a user builds a solution. Is there a possible way to implement this?
So far, after looking online, I've found:
...
3
votes
1answer
357 views
Good Code Spell Checker for Visual Studio 2010
Are there any good (preferably free) solutions out there?
I have already found these:
Spell Checker
Code Spelling Checker Extension for Visual Studio 2010 (VSX)
but will appreciate more ...
3
votes
1answer
725 views
Changing the namespace for a Web Reference in a Project to be Made Into a VS Project Template
When I add a web reference to a project, it comes up with a default namespace of: com.wpdevs.myservice. This is the namespace I'd have expected it to use in the application.
When I add the using ...
3
votes
1answer
356 views
How to apply stereotypes on UML Relationships' MemberEnds?
I'm running this code on a UML Class Diagram, and it works just fine, but when trying to apply stereotypes from PropertiesEditor in Visual Studio for relationship ends (FirstRole and SecondRole), the ...
3
votes
5answers
1k views
How to implement code folding in C#
I'm beginning to work on a COBOL/BASIC IDE at work (to replace the one that we have currently that's a slight step up from Notepad). It'll be made in C#. The management is really interested in ...
3
votes
2answers
265 views
Web Project for F#
I am building a project system for Visual Studio MVC web projects with controllers written in F#. It comes along pretty cool. I can build and run the apps, but I have a problem with FSharp Language ...
3
votes
4answers
2k views
Visual Studio plug-ins development, first steps
I would like to make a plug-in for visual studio... But I have no idea where to start.
While it was quite easy to find guides for Eclipse plug-in development, I'm having troubles to find a good guide ...
3
votes
2answers
560 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
3
votes
1answer
209 views
Visual Studio 2008 & Override LanguageService for Existing File Extension
I write simple LanguageService for JavaScript language. Target IDE is Visual Studio 2008.
I want to run my LanguageService for .js extension file(default extension for JavaScript language). But for ...
3
votes
5answers
401 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 use VS in some way.
3
votes
1answer
214 views
Including More Database Connection Options in a Visual Studio Isolated Shell Application?
When starting up an isolated mode visual studio shell application, the only databases available in the Tools->Connect to Database are Access, SQL Compact, and SQL Server Database File.
Is there a ...
3
votes
2answers
639 views
Generate DTOs from Object
I want to auto gen some DTOs from some of my existing objects, I was wondering if there already exist a Resharper, DevExpress or VSX open source to use, I need a tool to look into my code and let me ...
3
votes
2answers
2k views
VS2010 Extensibility - how different is it?
A question to those of you who already looked at VS2010. How big are the changes that add-in developers will have to make in order to get their add-ins working under VS2010?
3
votes
4answers
3k views
Visual Studio Extensibility: Adding existing folders to a project
I'm trying to use Visual Studio 2008's extensibility to write an addin that will create a project folder with various messages in it after parsing an interface. I'm having trouble at the step of ...
3
votes
3answers
929 views
How to extend project properties page?
Is it possible to add a custom tab to a project properties page in the Visual Studio 2008?
What I want to do is to be able to add a custom tab to properties page for the projects created from default ...
2
votes
0answers
48 views
How do you force a call to ILineTransformSource.GetLineTransform in a VS extension for a change to a line adornments dimensions?
I 'm writing a Visual Studio extension where I'm creating line adornments that need to be resized when the user resizes the code view. I.e. when the user resizes Visual Studio's window width, I modify ...
2
votes
1answer
76 views
Issues after I add a command filter to textview
I want to intercept key events in vs. I searched many articles for help, and this article inspired me. What I have done is:
create a new class and implement "IVsTextManagerEvents" interface to ...
2
votes
1answer
67 views
Making tool window show automatically on VS load
In my Visual Studio extensibility project, I'm attempting to make my tool window visible upon launch after package installation.
The dotneteers describe a way of doing this that involves adding the ...
2
votes
1answer
47 views
How to run Ook!? (VS Language Integration)
I downloaded the Ook! source, opened the .csproj and ran it in debug mode. The VS Experimental Instance fires up as expected, but now I can't figure out how to get to a blank code file so I can ...
2
votes
1answer
186 views
VS2010 extension, using MEF tagger, want to use code model
I want to write a visual studio 2010 extension displaying a margin glyph on each class, method, property, field and event definition (tooltip/popup window on click with additional info).
The new MEF ...
2
votes
2answers
150 views
Visual Studio Debugger extensibility - How to follow VS Debugger source file path redirections?
I'm writing a VS extension that needs to know the full path of the file the user is currently debugging, and I want to support the scenario where the source path written in the pdb is not correct, and ...