并排安装时如何使多个项目访问单个自定义组件
我正在创建一个自定义组件(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该将组件安装在全局程序集缓存中,并从那里引用它,而不是直接引用磁盘上的 DLL。
You should install your component in the Global Assembly Cache and reference it from there, instead of directly referencing the DLL on disk.