Products and Extensions for Visual Studio which help you get the most out of Visual Studio.
0
votes
0answers
26 views
vs2012 start page Getting recent files or finding default start page xaml
Since vs2012 sdk doesn't have a start page template project, you need to take vs2010 start page and upgrade it using :upgrade visual studio 2010 start page to 2012 but first of all it doesn't look ...
0
votes
1answer
21 views
How to write a custom language plugin for VS2012
We use a custom scripting language for some of our tools. We'd like to enable some IDE features when editing scripts in VS2012
In short, I want to write an extension which supports:
Basic code ...
0
votes
0answers
9 views
Visual Studio - Publish single file in Web Site Project
Similar question -- Visual Studio 2010 - Partially Publish Web Site?
I would like to push single files up from a plain Web Site project (not Web App), like you can in Sublime Text 2 (plugin) with ...
0
votes
0answers
14 views
Item Template for Web and/or MVC in a VSIX?
Is there a way to specify what type of project an item template is for besides CSharp and VB? I have tried setting ProjectType to Web and ProjectSubType to CSharp as it says in this article ...
0
votes
1answer
7 views
Specify a default solution when debugging with the experimental instance
When working with Visual Studio Extensions and debugging using the experimental instance, is it possible to have the experimental instance automatically load a solution?
I did not see options, but ...
0
votes
1answer
19 views
Automatically install VSIX dependencies
I have created a visual studio extension (vsix) which has dependency on Nuget Package Manager. Currently installation fails if Nuget package manager is not installed on target machine. Is there a way ...
0
votes
1answer
14 views
Visual Studio Extension highlight based on passed in code block
Trying to write a visual studio extension that will let me pass in a string and value pair and highlight the value.
I have an extension that looks for specific code and example is that it runs and ...
0
votes
1answer
27 views
dll is being used by another process
I am creating an extension in Visual Studio 2012 and keep having this error which is getting rather frustrating.
The way I have dealing with it recently is that I have to go into the add-in manager ...
1
vote
0answers
12 views
How to make a navigator extension for VS2010?
I am working on a C++ project using VS2010 sp1.
To jump between functions, we can use navigator list of Method and click at the desired one.
But in my project, there is a finite state machine, and I ...
3
votes
1answer
24 views
How to get EnvDTE.Command from CommandBarButton in Visual Studio 2012
I'm trying to find all enabled resharper Commands via the menus. I can find all the menu items using the following code. However I cannot find how to get the actual command from the DTE commands ...
0
votes
0answers
7 views
Programmatically Add item as Link in VS project templates
I am working on VS custom project templates.I have common assembly info at a solution level.I want to all link to common assembly info to all the projects in solution programmatically.
In DTE object ...
0
votes
0answers
33 views
Error when starting Roslyn based Visual Studio extension
Does anyone know this error Message? Or has an idea where to look for the problem? I am bit desperate, because I have no idea what I did to cause the problem...
Thanks guys!
...
0
votes
1answer
18 views
Can I run Mindscape Web Workbench's SCSS -> CSS conversion on SCSS files without a csproj?
I've opened a SCSS file in Visual Studio 2012 that isn't part of a csproj or VS solution (right-click SCSS file -> Open with.. -> select VS2012 devenv.exe).
When I save changes to Styles.scss, I'd ...
0
votes
0answers
25 views
Add files from VSIX to solution folder
I am creating a VSIX project for a multi-project template. I want to add a solution folder (.nuget) to the solution file. I want also want copy three files (nuget.exe, nuget.targets, nuget.config) to ...
0
votes
1answer
30 views
Event fired when caret position changes in Document?
In my visual Studio 2012 extension I am getting the Active EnvDTE.Document using
windowEvents = dte2.Events.WindowEvents;
windowEvents.WindowActivated += WindowActivated;
private void ...
0
votes
1answer
28 views
IClassifierProvider is not getting initiated
I am trying to add color to the visual studio build output. So I am trying to get classifier of IClassifierProvider. But GetClassifier() is not getting called. What could be the problem? Source code ...
1
vote
1answer
16 views
Is there a way to monitor resources used by Extensions in Visual Studio 2010?
I am wondering if there are any tools built-in or available from a third party for profiling active Extensions in Visual Studio 2010? I am getting some slowdowns after I installed a few Extensions, ...
0
votes
1answer
30 views
IEnvironment.StackTrace using Visual Studio extension c#
Environment.StackTrace is useful in obtaining stackTrace of currently running application. Can we leverage this for building visual studio extensions.
For Ex.
Have created small visual studio ...
0
votes
0answers
21 views
Obtaining Runtime call stack using visual studio extension
Is there a way to obtain runtime call stack for a given .net application using extensions. I know this is possible because I could see this being implemented in the link below: ...
0
votes
0answers
20 views
Find functionality within call stack
Recently when working on a legacy application I've often found the need to search for specific text within (what would be) the callstack at runtime.
For example:
int age;
void Method A() //Search ...
0
votes
1answer
38 views
How to connect VS to TFS Team Project from VSSDK
ITeamFoundationContextManager tfContextManager = ServiceProvider.GlobalProvider.GetService(typeof(ITeamFoundationContextManager)) as ITeamFoundationContextManager;
...
0
votes
1answer
59 views
VSIX package source.extension.vsixmanifest is missing, can't figure out how to add it properly either
I'm flailing around trying to debug this VS 2012 VSIX package which relies on the project and item templates. Can you clear up for me what I'm supposed to do?
I have VSIX Project and Item templates ...
1
vote
1answer
30 views
How to set focus to an Entity in the Entity Framework Designer when an on-click event is triggered?
I'm writing a Visual Studio Extension (VSPackage) which interacts with the Entity Framework. My extension currently consists of a ToolWindow with a UserControl as content. I can populate this ...
-2
votes
0answers
40 views
Keyboard listener visual studio 2012 add-in [closed]
I am writing a add-in for VS 2012, I want to register a callback for when a certain key is pressed. I am inheriting from IDTExtensibility2. I want to add a listener to a key pressed event in ...
0
votes
0answers
29 views
How do I Create an Editor Classifier Project? [duplicate]
I am trying to learn to write extensions to Visual Studio 2012. I was reading this link from MSDN.
In step 1 on how to create an MEF project it says to "create an Editor Classifier project". In the ...
0
votes
1answer
12 views
How to turn off Quick Info inVS10
I need to turn Quick Info off in my VS10. The biggest problem is not the code obstruction but i have installed some extensions and this original Quick Info is overpainting the info shown by the ...
0
votes
0answers
25 views
Installing Emacs Emulation keybindings — Invalid VSIX package
I'm trying to install the extension for Visual Studio 2012 that allows emacs key-bindings.
I'm following through the steps here:
Emacs Keybindings in Visual Studio 2012
I'm up to step 5:
Run ...
0
votes
1answer
27 views
DocumentSaved event is never raised
I'm trying to write a simple Visual Studio extension that performs an action when a file is saved:
protected override void Initialize()
{
base.Initialize();
var dte = ...
0
votes
1answer
45 views
How can you make the file get added to the recent projects MRU list when programatically opening a solution in VS?
When a solution is programmatically opened in an add-in/extension (VS2012 in my case) using Solution.Open, the solution file is not added to the projects MRU (i.e. File->Recent Projects and Solutions ...
2
votes
1answer
176 views
Compile-On-Save with Typescript 0.9
So I know that the Typescript 0.9 Alpha is out, and one of the drawbacks is the ability to Compile-On-Save is not available yet.
My question is, is there another way to get this feature?
Web ...
3
votes
3answers
61 views
Is there a way to record and replay coding in visual studio 2012?
I'm going to do demo based presentation. So what I want is prerecord(not a video record) my demo and replay while the I'm doing the presentation. Pre-record and play as in save code segments and ...
0
votes
0answers
34 views
Customized Project template throws exception as Package installation error after update Visual Studio 2012 update 2?
We have used customized project template.
This project template copies the query.cs, Knockout.js, etc from C:\Program Files.......\Asp.Net MVC4/Packages.
After I update VS 2012 Update 2, our ...
0
votes
0answers
24 views
How to create a SharePoint List to use as a private gallery in Visual Studio 2012?
I would like to add a private extension gallery to my Visual Studio installation and provide the extensions listed there by means of a SharePoint-list. MSDN has an article about that topic, however ...
0
votes
0answers
37 views
How can a visual studio solution be upgraded/migrated from an older version of visual studio within an addin or extension package?
I am working on a Visual Studio Extension package (vs2010/2012) that needs to be able to programmatically open a solution. I've seen that there are two approaches one can use (perhaps there are others ...
2
votes
1answer
31 views
How to do logging when writing an Visual Studio MEF extension
I'm writing a Visual Studio extension using MEF an I'm wondering how to add logging to the code.
When writing a VsPackage one could use the "Action Log" like shown in MSDN. But this isn't possible in ...
3
votes
1answer
46 views
Which of my Visual Studio extensions are slowing?
My Visual Studio 2012 has become slow to open. In 'safe mode' it's fast again. Presumably some extensions are slowing Visual Studio. Which?
Is there an analogue of Internet Explorer's feature which ...
0
votes
0answers
22 views
Ship Code Analysis Ruleset and styleCop part of custom project templates
I am working on custom multi project solution template.I have my own custom stylecop settings and code analysis rule set.I want to refer them in my project templates and ship it along it.
Any ...
5
votes
1answer
70 views
How do I enable a “contextual” editor in Visual Studio?
A number of IDEs and editors are offering "contextual" editing tools:
A simple example is the Assistant Editor In XCode. A secondary edit windows automatically loads a relevant secondary file ...
0
votes
1answer
57 views
Usual methods to get rid of all caps menu on Visual Studio Express 2012 have failed. Please advise
I've been trying to get rid of the all caps menu in VS express for desktop but to no avail. I've tried the usual registry hack by putting this into powershell
Set-ItemProperty -Path ...
0
votes
1answer
36 views
Visual Studio Extensibility point for new files
I need to replace default naming convention in Visual Studio 2012 for aspx\ascx files. Is there a way I can do it?
As one of possible solution, I thought that I can make Extension that will subscribe ...
0
votes
0answers
37 views
Integrate command line into Visual Studio
Is there a way to embed the Windows Command Line into Visual Studio 2010 without developing an extension for this? Or perhaps is there an extension that already does this? Mainly I want to be able to ...
0
votes
1answer
269 views
Visual Studio 2012 Highlight all open files in solution explorer?
Question:
Is there a way to make all files that are open in visual studio be highlighted in the solution explorer?
(I know there is a filter that you can filter it to show only open files but this ...
1
vote
2answers
321 views
Visual Studio 2012 Update 2 and Git Tools
When MS released Git Tools for Visual Studio 2012, they said that it requires Update 2 - http://www.hanselman.com/blog/GitSupportForVisualStudioGitTFSAndVSPutIntoContext.aspx.
I'm developing some ...
2
votes
1answer
39 views
How to get current used color theme of Visual Studio2012
I'm creating my own IntelliSense Presenter, since Visual Studio2012 support change theme, so I want my background color of the presenter can be auto-changed when the theme been changed. Is there a way ...
1
vote
1answer
84 views
How to programmatically override the build and launch actions?
I created a custom project template associated with a custom project type. The solution depends heavily on MPF for Projects - Visual Studio 2012 framework.
What i would like to do next is override ...
0
votes
1answer
25 views
What VS extension/setting do I have to turn on to get this feature?
What Visual Studio 2010 extension or setting turns on the feature pictured below? It allows me to jump to the matching brace and for conditional statements, it gives me a peek of the condition at the ...
0
votes
1answer
115 views
What happened to the Visual Studio extension for “Ultra Find”?
What happened to the Visual Studio extension for "Ultra Find"? I've seen references all over this site and the Internet for this allegedly awesome extension. Here are a couple of links:
...
0
votes
1answer
78 views
SASS calculation rounding - configurating the number of decimals with Web Workbench and Visual Studio 2012
In SASS you can usually configure how many decimals you want in your calculations (see Sass and rounding down numbers. Can this be configured?).
This is handy, as especially Chrome sometimes have ...
34
votes
2answers
1k views
How to add a button to Visual Studio Intellisense
I would like to add a button to the top of the list of options returned by Visual Studio's IntelliSense. When the button is clicked, my custom code will be executed (which will, among other things, ...
0
votes
1answer
25 views
What is the name of the VSIX that shows type members on mouse hover?
Used to have that extension under Visual Studio 2010 but I can't find it again.
The extension provide the following helper :
When hovering mouse over a type in the code editor a small window would ...






