并排安装时如何使多个项目访问单个自定义组件

发布于 2024-10-21 18:06:35 字数 180 浏览 1 评论 0原文

我正在创建一个自定义组件(comp A),该组件由同一解决方案中的 4-5 个其他 winform 项目使用。问题是在安装应用程序时,用户可能至少选择安装一个或多个项目。她/他稍后可能会安装另一个项目。

我希望这些项目能够在任何时间访问组件的相同副本。我不希望每个项目都有该组件的单独副本。

我该如何实现这一目标?

I am creating a custom component (comp A) which is used by 4-5 other winform projects in the same solution. The issue is while installing the app, the user might select at the minimum one project to install or more. S/he might install another project later.

I want these projects to access the same copy of the component, at any point of time. I don't want to each of these projects to have a separate copy of the component.

How do i achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

-黛色若梦 2024-10-28 18:06:35

您应该将组件安装在全局程序集缓存中,并从那里引用它,而不是直接引用磁盘上的 DLL。

You should install your component in the Global Assembly Cache and reference it from there, instead of directly referencing the DLL on disk.

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