↧
Answer by Hadi Brais for Developing a Visual Studio Extension for VS 2005+
It seems an arbitrary decision that you want your VS extension to be compatible with VS2005+. Why not VS2003+ or VS2008+?Anyway, this is possible but very difficult because VS has changed significantly...
View ArticleAnswer by Sergey Vlasov for Developing a Visual Studio Extension for VS 2005+
You can use Visual Studio 2008 with the VS 2008 SDK targeting .NET 3.5 to create a Visual Studio Package that can run on VS 2005+. You will also need to create an installer for it.If you don't have...
View ArticleDeveloping a Visual Studio Extension for VS 2005+
I am developing a Visual Studio Extension the I would like to be compatible with VS 2005+(2005,2008,2010,2012,2013 and eventually 2015).I have been looking into the requirements for this to be possible...
View Article