如何分发/部署 Visual Studio 插件
我使用 Visual Studio 2010 创建了自己的外接程序。此外接程序在 Visual Studio 启动时加载,并在“工具”菜单中添加一个条目。通过单击“工具”菜单中的条目来执行加载项的操作。
该加载项运行良好,但现在我想创建一个安装程序或其他东西以将其部署到其他计算机上。
我尝试创建一个 MSI 项目,但我不知道在哪里复制加载项的 dll 以及如何在 Visual Studio 中注册它。
然后我尝试创建一个 VSIX 项目,我设法安装了扩展,但我在“工具”菜单中的条目不可见/显示。
有人知道部署 Visual Studio 的好方法吗?
I created my own Add-in with Visual Studio 2010. This Add-in is loaded at the startup of Visual Studio and it adds an entry in the Tools menu. The action of the Add-in is executing by clicking on its entry in the Tools menu.
The Add-in works well, but now I want to create an installer or something to deploy it on others computers.
I tried to create an MSI project, but I don't know where to copy the dll of the Add-in and how to register it in Visual Studio.
Then I tried to create a VSIX project, I managed to install the extension but my entry in the Tools menu is not visible/displayed.
Anyone knows a good way to deploy the Visual Studio ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
VSIX 安装程序用于部署 Visual Studio 2010 扩展。我不确定它是否适用于加载项。我会选择MSI。在这里您可以找到一个教程:
http://www.codeproject.com/KB/install/ AddinCustomAction.aspx
VSIX installers are used for deploying Visual Studio 2010 extensions. I'm not sure it works for add-ins. I would go with MSI. Here you will find a tutorial:
http://www.codeproject.com/KB/install/AddinCustomAction.aspx