在运行时合并两个程序集 - C#

发布于 2024-09-19 06:36:07 字数 240 浏览 2 评论 0原文

是否可以在运行时合并两个程序集,以便在迭代 ExportedTypes 时返回两个原始程序集中的所有类型?

原因:

我使用数据库迁移框架来更新我的数据库。它采用由特殊类组成的单个程序集,用于定义对数据库所做的修改。

我有两个非常相似的数据库。许多表都是相同的,但每个表都有几个独特的表。我想要一个通用的迁移程序集和每个数据库的特定程序集。但要将其与我的框架一起使用,我需要将这两个程序集填充到一个程序集中。 这可能吗?

Is it possible to merge two assemblies at runtime such that, when you iterate over the ExportedTypes, all the types from both original assemblies are returned?

The why:

I use a database migration framework to update my databases. It take a single assembly made up of special classes which defines the modifications made to the database.

I have two databases the are very similar. Many tables are identical, but each has a couple of unique tables. I would like to have a general migration assembly and a specific assembly for each database. But to use it with my framework, I need to stuff the two assemblies into a single one.
Is this possible?

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

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

发布评论

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

评论(1

纵情客 2024-09-26 06:36:07

看看 ILMerge

ILMerge 是一个用于将多个 .NET 程序集合并为单个 .NET 程序集的实用程序。

尽管它仅在 v2.0 .NET 运行时中运行。

Take a look at ILMerge:

ILMerge is a utility for merging multiple .NET assemblies into a single .NET assembly.

Though it only runs in the v2.0 .NET runtime.

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