在运行时合并两个程序集 - C#
是否可以在运行时合并两个程序集,以便在迭代 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看 ILMerge:
尽管它仅在 v2.0 .NET 运行时中运行。
Take a look at ILMerge:
Though it only runs in the v2.0 .NET runtime.