在 Visual Studio 工具箱中安装 .NET Framework 控件

发布于 2024-11-06 12:48:00 字数 220 浏览 0 评论 0原文

我们当前使用此项目在 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 技术交流群。

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

发布评论

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

评论(3

安静被遗忘 2024-11-13 12:48:00

我写了一篇关于如何执行此操作的教程文章:

Visual Studio Toolbox Control Integration< /a>

我发现 CodePlex 上的项目相当过时,并将其更新为与 Visual Studio 2012 一起使用。

其他方法包括:

  • Toolbox Controls Installer (TCI) Package - 可能是最快、最简单的方法
  • VSI 和 VSIX 包
  • 最强大、最复杂的方法。

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:

  • Toolbox Controls Installer (TCI) Package - probably the quickest and easiest way
  • VSI and VSIX packages
  • VSPackage - the most powerful, and most complicated way

I have discussed the updating and uninstallation in the article as well.

黯淡〆 2024-11-13 12:48:00

您需要创建一个 VSI 文件并使用 Tool.InstallComponents 命令。其实很简单。另请阅读 MSDN 上的工具箱控件开发文章。

示例 VSI 模板:

<?xml version="1.0" encoding="utf-8" ?>
<VSContent xmlns="http://schemas.microsoft.com/developer/vscontent/2005">
  <Content>
    <FileName>Web Connection\WebConnectionWebControls.dll</FileName>
    <DisplayName>Web Connection</DisplayName>
    <Description>Web Connection Toolbox controls for use with the Web Control Framework in VS.NET</Description>
    <ContentVersion>1.0</ContentVersion>
    <FileContentType>Toolbox Control</FileContentType>
  </Content>
</VSContent>

然后运行命令: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:

<?xml version="1.0" encoding="utf-8" ?>
<VSContent xmlns="http://schemas.microsoft.com/developer/vscontent/2005">
  <Content>
    <FileName>Web Connection\WebConnectionWebControls.dll</FileName>
    <DisplayName>Web Connection</DisplayName>
    <Description>Web Connection Toolbox controls for use with the Web Control Framework in VS.NET</Description>
    <ContentVersion>1.0</ContentVersion>
    <FileContentType>Toolbox Control</FileContentType>
  </Content>
</VSContent>

Then run the command: devenv.exe /command Tools.InstallCommunityControls

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