Legends
Legends

Reputation: 22702

Enterprise Library 6 - VS 2015 - Windows 10

Will EL6 be supported on Win10 & VS 2015 in the near future? I wanted to install the ConfigConsole.visx in order to configure all things in the designer.

VSIXInstaller.NoApplicableSKUsException: This extension is not installable on any currently installed products

13.09.2016 10:11:49 - Supported Products : 13.09.2016 10:11:49 - Microsoft.VisualStudio.Ultimate 13.09.2016 10:11:49 - Version : [11.0] 13.09.2016 10:11:49 - Microsoft.VisualStudio.Premium 13.09.2016 10:11:49 - Version : [11.0] 13.09.2016 10:11:49 - Microsoft.VisualStudio.Pro 13.09.2016 10:11:49 - Version : [11.0]

enter image description here

Upvotes: 0

Views: 381

Answers (1)

magicandre1981
magicandre1981

Reputation: 28826

The VSIX extension is a zip file, so unzip it, edit the manifest and add 14.0 as supported version.

<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[12.0,14.0]" />
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[12.0,14.0]" />

zip the content of the extracted folder again and rename the extension of the generated zip to VSIX and try to install the VSIX.

Upvotes: 2

Related Questions