在 Visual Studio 工具箱中安装 .NET Framework 控件
我们当前使用此项目在 Visual Studio 工具箱中安装 .NET 控件:http://vstudiotoolbox.codeplex.com/。这种方法需要在后台运行 VStudio,导致运行速度非常慢。我们注意到许多其他组件制造商可以立即安装他们的控件。
还存在哪些其他方法?
谢谢。
We currently use this project for installing .NET controls in the Visual Studio toolbox: http://vstudiotoolbox.codeplex.com/. This approach requires to run VStudio in the background resulting in a very slow operation. We noticed that many other component manufacturer can install their control instantly.
What other approaches exist?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是我到目前为止发现的: http://social.msdn.microsoft.com/Forums/en-US/vsx/thread/bf9ec1a9-d9eb-48b3-a081-414587f27f55/
Here is what I have discovered so far: http://social.msdn.microsoft.com/Forums/en-US/vsx/thread/bf9ec1a9-d9eb-48b3-a081-414587f27f55/
我写了一篇关于如何执行此操作的教程文章:
Visual Studio Toolbox Control Integration< /a>
我发现 CodePlex 上的项目相当过时,并将其更新为与 Visual Studio 2012 一起使用。
其他方法包括:
VSPackage -我在文章中也讨论过更新和卸载的
I wrote a tutorial article on how to do this:
Visual Studio Toolbox Control Integration
I found project on CodePlex quite obsolete and updated it to work with Visual Studio 2012.
Other approaches include:
I have discussed the updating and uninstallation in the article as well.
您需要创建一个 VSI 文件并使用 Tool.InstallComponents 命令。其实很简单。另请阅读 MSDN 上的工具箱控件开发文章。
示例 VSI 模板:
然后运行命令:
devenv.exe /command Tools.InstallCommunityControls
You need to create a VSI file and use Tool.InstallComponents Command. Really simple actually. Also read Toolbox Control Development article at MSDN.
Sample VSI template:
Then run the command:
devenv.exe /command Tools.InstallCommunityControls