Developing Visual Studio addins for multiple versions of Visual Studio

十年热恋 提交于 2019-12-06 03:59:44

问题


I've been given the task of developing some extensions for Visual Studio for our internal use. These will have to support a couple of different versions of Visual Studio (VS2008, 2010 and 2012 - VS2005 would be a nice to have but not essential). I'd like to develop these in as consistent a way as possible, reusing as much of the code as possible, while fitting it into the existing project structure for these kinds of tools, which is a Visual Studio 2012 .sln.

What's the best / easiest way of developing this kind of extension? A VSPackage project? Can I make a 2008-compatible VSPackage which is developed in VS2012?

The features I will need for the extensions I'm writing at the moment are pretty basic - I need to create Tools menu commands, possibly a custom toolwindow. My requirements might change later on but I don't need editor adornments or anything like that at the moment.

I saw this question which might seem to be a duplicate, but the answer which was accepted doesn't answer the question, so...


回答1:


It really depends on what is your extension going to do.

VS2008 does not support extensions (.vsix) and you will need to write VSPackage deployed as msi for it. You also won't have access to many new features introduced in VS2010 (easier editor integration and access to vs services via MEF), but basic stuff such as manipulating solution/project/files should be fine and work on all versions (e.g. using DTE should be ok).

As far as I remember for VS2008 you will also need to obtain a PLK, which is no longer required for 2010 and 2012.

I haven't tried developing 2008 package in VS2012, but you definitely can develop 2010 extension in 2012.

Also remember that VS2008 is .Net 3.5, so your code should use .net 3.5 and version of c# which it supports to be portable.



来源:https://stackoverflow.com/questions/13495654/developing-visual-studio-addins-for-multiple-versions-of-visual-studio

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!