I created a Visual Studio 2012
extension by creating a VSPackage
. There is also a VSIX
file generated when I build my add-in.
I would like to make my extension available on Visual Studio 2010
. How can I do?
Asked
Active
Viewed 180 times
0
1 Answers
1
You can add
<SupportedProducts>
...
<VisualStudio Version="10.0">
<Edition>Pro</Edition>
</VisualStudio>
to source.extension.vsixmanifest in VS 2012 and after that your extension should install in VS 2010, but it most probably would not work due to VS 2012 dependencies.
It is much safer to develop your extension in VS 2010 and then add support for VS 2012 with
<SupportedProducts>
...
<VisualStudio Version="11.0">
<Edition>Pro</Edition>
</VisualStudio>

Sergey Vlasov
- 26,641
- 3
- 64
- 66