visual-studio-extensions Questions
4
Solved
I'm just writing a VSIX extension for Visual Studio 2010 and can't figure out how to debug it.
One obvious method is to output messages. Extension template uses Trace.WriteLine(). But where to fin...
Expiable asked 14/2, 2012 at 17:44
1
I'm trying to create dynamic menu items in a VS 2015 extension. The best I can do is to leave the placeholder command visible and active. Here's the most minimal example I could create starting wit...
Chamois asked 15/9, 2015 at 23:11
7
Solved
One of the extensions listed in Visual Studio (2012 for me) is the "Microsoft Advertising SDK for Windows 8.1". I like to uninstall extensions I don't need, but this one won't allow me. if I hover ...
Barytes asked 10/6, 2014 at 6:54
1
Solved
My less files compiles to css on each save, but how do I disable minification for all css files i the project in a simple way? I can see in the docs that it's possible to give each file its own set...
Cribb asked 10/8, 2015 at 13:34
2
Visual Studio 2015 is regularly becoming odd.
Keys typed are appearing in semi-random orders, I'll sometimes have to press keys twice or more.
I think this seems to be around key words, rather th...
Isagoge asked 11/8, 2015 at 20:28
1
Solved
I started to try out the new Windows Bridge for iOS (Project Islandwood). The samples work fine, but there is no code highlighting at all.
I found a VS Extension called "objc-syntax-highlighting" i...
Caroylncarp asked 7/8, 2015 at 6:26
4
I just installed an extension to my Visual Studio 2013 app. I decided I don't want that extension so I went to Tools->Extensions and Updates and scrolled down to the extension I want to install.
T...
Weigel asked 11/8, 2014 at 1:23
4
Solved
We have a Visual Studio extension, currently installed with MSI, since we need to perform certain tasks after the installation (ngen, registering certain COM servers, etc). In the end of the instal...
Minnesota asked 10/3, 2014 at 12:34
2
Solved
I need my Visual Studio extension to react to debugging events. I've registered a IDebugEventCallback2 and I'm receiving events, but all I get for each event is an opaque IDebugEvent2 and a Guid, m...
Goose asked 15/6, 2015 at 19:22
3
I use Visual Studio 2013, and it have a pretty feature to notify and install all extension updates.
So, this is very good, but I receive sometimes the request to install the updates for the featu...
Delrio asked 28/2, 2014 at 9:10
1
Solved
I have a Visual Studio extension that hooks into debugging events. When the debugger stops at a line of code, my IDebugEventCallback2 callback gets called, and I can find out the filename and line ...
Rojas asked 16/6, 2015 at 12:48
1
In my editor extension I use custom classification formats for keywords, identifiers and so on. Of course, there are default formats I could use, because then colors (used by syntax highlighting) w...
Colonial asked 17/3, 2014 at 12:12
5
Solved
StyleCop mandates a particular sort order for the contents of C# files. For example, fields should be declared before methods and public declarations should come before private ones.
It would be u...
Infective asked 3/12, 2011 at 20:53
4
Solved
After latest update of Azure tools, Visual Studio 2012 does not work correctly. Looks like an unresponsive application, loading project very long, menu does not work too and you can hear two dings ...
Dvinsk asked 20/11, 2014 at 23:36
1
Solved
We are attempting to expand text in Visual Studio. Our current attempt consists of creating transparent intraline adornments at certain points in the text.
We have just stumbled upon a disadvantag...
Brodench asked 29/1, 2015 at 10:36
1
Based on this question I've tried the following:
EnvDTE80.DTE2 dte = ServiceProvider.GlobalProvider.GetService(typeof(EnvDTE80.DTE2)) as EnvDTE80.DTE2;
No luck, null object.
But based on this M...
Sopping asked 12/12, 2014 at 16:40
1
Solved
In some extension we implement the IVsUpdateSolutionEvents2
and IVsSolutionBuildManager2 used for registering caller with the AdviseUpdateSolutionEvents
For example, this called before any build a...
Bradleigh asked 19/11, 2014 at 14:0
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
Solved
Is there a visual studio add-on to copy the full type name of the identifier under the cursor into clipboard? Please DO NOT link me to "VS 2010 - easy way to copy full type name of a class/in...
Rhinoceros asked 4/8, 2011 at 20:58
1
I have created a new Visual Studio Package that when loaded creates a Tool Window that looks like this:
It is comprised of some controls with canvases and such that draw shapes in 2 or 3 dimension...
Amperage asked 7/10, 2014 at 15:34
1
Solved
In a Visual Studio extension I've built I need to highlight method invocations within the Visual Studio editor. For example:
I would like to use HSV colors to divide up the color spectrum accord...
Beerbohm asked 16/9, 2014 at 4:33
2
Solved
I am making changes to a Visual Studio wizard that creates a project from a template, and needs to add a reference to an assembly to the project that also lives in the extension directory. So I nee...
Rhythmist asked 6/1, 2012 at 17:43
1
I created a VISX project, and wrote this piece of code:
using Microsoft.VisualStudio.Editor;
using Microsoft.VisualStudio.TextManager.Interop;
using System.ComponentModel.Composition;
namespace M...
Patroclus asked 14/9, 2014 at 17:50
2
Solved
A few extensions that I'm using are broken under VS2012 because at some point they were updated to work with VS2013, by changing the version of referenced libraries. At runtime an error like this c...
Proprietress asked 1/9, 2014 at 13:9
3
Solved
I'm trying to add custom coloring for only certain keywords in my Visual Studio editor for C# code. I want to be able to color any type that implements IDisposable as a different color. Ideally I'd...
Willable asked 10/7, 2014 at 20:47
© 2022 - 2024 — McMap. All rights reserved.