Visual Studio Add-in 2012
-
Hi All, Is it possible to develop a visual studio add-in, which can be installable in any visual studio, I mean, that can be installable and usable in VS2005,VS2008,VS2010, VS2012 & 2013. I have a visual studio add-in developed in VS2008, I wanted to make it generic such that, it will be installable and usable in any of the Visual studios. is it possible? Thank you in advance for your help. Regards
-
Hi All, Is it possible to develop a visual studio add-in, which can be installable in any visual studio, I mean, that can be installable and usable in VS2005,VS2008,VS2010, VS2012 & 2013. I have a visual studio add-in developed in VS2008, I wanted to make it generic such that, it will be installable and usable in any of the Visual studios. is it possible? Thank you in advance for your help. Regards
Guess that it's possible, since the supported hosts are specified in the XML. Keep in mind that every version has it's own deployment-location, so you'd still need to ask what version to install to. There may be VS-versions where the addin-contract is altered; in that case, make a simple addin, and use that to load your functionality from a shared assembly.
Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^]
-
Hi All, Is it possible to develop a visual studio add-in, which can be installable in any visual studio, I mean, that can be installable and usable in VS2005,VS2008,VS2010, VS2012 & 2013. I have a visual studio add-in developed in VS2008, I wanted to make it generic such that, it will be installable and usable in any of the Visual studios. is it possible? Thank you in advance for your help. Regards
You have posted exactly the same message in three forums on this site: http://www.codeproject.com/Messages/4672978/Visual-Studio-Add-in-2012.aspx[^] http://www.codeproject.com/Messages/4672977/Visual-Studio-Add-in-2012.aspx[^] http://www.codeproject.com/Messages/4672976/Visual-Studio-Add-in-2012.aspx[^] Please don't cross-post like that. It's not considered polite.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
-
You have posted exactly the same message in three forums on this site: http://www.codeproject.com/Messages/4672978/Visual-Studio-Add-in-2012.aspx[^] http://www.codeproject.com/Messages/4672977/Visual-Studio-Add-in-2012.aspx[^] http://www.codeproject.com/Messages/4672976/Visual-Studio-Add-in-2012.aspx[^] Please don't cross-post like that. It's not considered polite.
"These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
Richard/Team, Accept my apologies, as I was not sure of the correct forum, i have posted 3 forums...thanks
-
Richard/Team, Accept my apologies, as I was not sure of the correct forum, i have posted 3 forums...thanks
-
Guess that it's possible, since the supported hosts are specified in the XML. Keep in mind that every version has it's own deployment-location, so you'd still need to ask what version to install to. There may be VS-versions where the addin-contract is altered; in that case, make a simple addin, and use that to load your functionality from a shared assembly.
Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^]
Thank you Eddy for the relavent answer. Can you please extend your help in finding me an article/sample which can help me understanding your point "make a simple addin, and use that to load your functionality from a shared assembly". Thank you,
-
I am sorry, can you come again.
-
Thank you Eddy for the relavent answer. Can you please extend your help in finding me an article/sample which can help me understanding your point "make a simple addin, and use that to load your functionality from a shared assembly". Thank you,
There's a thread on SO[^] that talks about sharing stuff between projects. You'd typically put the shared functionality in a project, and reference that (and invoke it) from your addin-project.
Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^]