如何分发/部署 Visual Studio 插件

发布于 2024-12-16 18:47:44 字数 301 浏览 3 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放低过去 2024-12-23 18:47:44

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文