I’m trying to install a vsix add-in in VS2012. However it looks like this add-in is available only for VS2010.
Is there any way to install it manually or to force it to work on 2012?
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
VSIX is just a zip-archive. Unpack it, locate the file
extension.vsixmanifest. This is an XML file, open it. Locate the sectionSupportedProducts. It should look like the following:Copy-paste the
VisualStudiosection and update theVersionattribute on the pasted fragment to11.0.Pack the contents back into a zip-archive. Make sure the archive have the VSIX extension. You’re done.