Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to upgrade a 2013 vspackage to visual Studio 2015

I am trying to upgrade a vspackage to be used for visual studio 2015.

The vspackage I created in visual studio 2013 and it works in all prior versions

I Updated my dev box with Visual studio 2015. Install the Visual studio 2015 SDK.

I upgrade the solution and all project to visual studio 2015. I then compile the project.

I finally double click on the vsix package and receive the following error from the bin debug folder of my vsix project ...

enter image description here

I do not see the menus for my extension in 2015...

I do in 2013 and below.

I am sure, there is something simple, I am doing incorrectly.

I also tried to create new VSIX visual studio project for 2015 which works in the debugger, but I do not see my extension when running outside of the debugger.

like image 603
Stuart Smith Avatar asked Jan 09 '23 07:01

Stuart Smith


1 Answers

Supported Visual Studio versions are defined in the .vsixmanifest file. If you open it in the design view and select Install Targets, the Version Range for your extensions is currently probably [12.0]. To add support for VS 2015, change it to [12.0, 14.0].

enter image description here

like image 57
Sergey Vlasov Avatar answered Mar 17 '23 05:03

Sergey Vlasov