My VS 2015 extension currently has the following in the Manifest file:
<Installation InstalledByMsi="false">
<InstallationTarget Version="[14.0]" Id="Microsoft.VisualStudio.Pro" />
<InstallationTarget Version="[14.0]" Id="Microsoft.VisualStudio.Ultimate" />
<InstallationTarget Version="[14.0]" Id="Microsoft.VisualStudio.Enterprise" />
</Installation>
How do I make sure that my Extension to VS 2015 works with ALL editions of Visual Studio2015 that support Extensions?
Joginder Nahil