vsix Questions

3

I am having one VSIX project, which will made some changes in Project.json file of ASPNET5 project. am using the following to edit .json file. ProjectJson jsonObj = JsonConvert.DeserializeObject&l...
Southwest asked 15/11, 2015 at 16:44

1

Solved

Assume that I need to store any array in the extension just freshly created from the template. I just created new VSIX project, added VSPackage to it, then added option page grid (DialogPage). T...
Froe asked 23/9, 2015 at 23:23

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

3

I have an internal extension I'd like to add to Visual Studio that should hook up to the Editor Context menu - regardless of what type of file is open. I can handle enabling/visibility dynamically ...
K2 asked 1/8, 2015 at 7:24

0

Using this code: public void InstallPackage(Project project, string packageId, string version, string packageSource) { var componentModel = (IComponentModel)Package.GetGlobalService(typeof(SCompo...
Deferential asked 21/8, 2015 at 23:0

3

Solved

Is there an XML formatter available as an add-in for Visual Studio 2010? I am currently using Notepad++ and using the XML Tools plug-in to get the formatting sorted. Is there an add-in for VS2010,...
Candis asked 17/9, 2010 at 13:20

1

Solved

I've rebuilt this project twice from the ground up, and I can't figure out why my VSIX' menu items and Options pages are being loaded through debug mode but not by installing the .VSIX file manuall...
Heal asked 28/7, 2015 at 14:21

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...

2

Solved

I want to access the path to currently open solution in Visual Studio from a vsix project. How can I get that? This thread tells if a solution is open or not but gives nothing about the path of th...
Archaic asked 8/7, 2015 at 12:6

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...

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 ...

2

Solved

I'm creating a VS2010 extension (let's call it MyExtension). The UI for this extension is in a different assembly (MyExtension.UI), the extension project only contains boilerplate code to call the ...
Barrick asked 7/8, 2011 at 16:55

1

Solved

I am developing a Visual Studio Extension (VSIX). I need to add custom right-click menus on Solution Explorer right click of class/methods/fields items, that can be found under source file items: ...
Analogous asked 24/2, 2015 at 13:16

1

Solved

When launching VSIXInstaller.exe from our application, we're trying to use the ExitCode property on the Process object to determine if the package was successfully installed, but we've found that t...
Deciduous asked 3/2, 2014 at 15:45

2

Solved

I created a VSIX Project (using Visual Studio Extensibility) that references a C# Project Template; it looks like this: <TemplateData> <Name>...</Name> <Description>...&l...

2

Solved

I am currently working on a VS extension / add-in and I need to associate work items with the pending changes (without triggering a check-in). After searching for some hours I couldn't find a way ...
Nonillion asked 15/8, 2014 at 18:16

2

Solved

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 "DeployVsixExte...
Humankind asked 1/4, 2013 at 16:36

2

I'm trying to create a Visual Studio plugin, it's a menu item that executes batch files. I have no idea how to include the batch files (or any other additional files) with the VSIX when publishing ...
Mealie asked 11/9, 2014 at 13:23

2

Solved

Can anyony help me in "How to install VSIX using MSI installer". For msi installer I'm using visual studio Installer setup project. When I use VSIX with extension manager it works fine. I want t...
Vuong asked 24/5, 2011 at 11:58

2

Solved

Both of these articles talk about how to develop extensions for VS2013, but both presume that you have an extension project type available Extending the Visual Studio Environment Creating Extensi...
Valor asked 11/11, 2013 at 16:4

1

Solved

I am working on a Visual Studio 2010 extension and I want to add an attribute to an MSBuild Item, as follows: <EmbeddedResource Include="SomeFile.xml"> <FooAttribute>%(Filename)%(Ext...
Synovitis asked 24/10, 2010 at 12:39

1

Solved

How can I pass a custom MsBuild property to Visual Studio build engine from Visual Studio Extension (I want to write a custom add-in) ? Just like Visual Studio itself is passing properties like $(C...
Clearstory asked 4/6, 2013 at 19:23

2

I have created Visual Studio 2012 Package (using VS2012 SDK). This Extension (if installed on the client's IDE environment) should has, among other things, a functionality of collecting all specifi...

2

Solved

I'm developing an extension for visual studio. There I have an option page: public class GeneralOptionsPage : DialogPage { [Category("General")] [DisplayName("Foos")] [Description("Bla Foo Bl...
Comradery asked 18/6, 2014 at 17:0

2

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 structur...
Deanedeaner asked 24/8, 2012 at 13:15

© 2022 - 2024 — McMap. All rights reserved.