如何升级外部dll?

发布于 2025-01-07 09:39:57 字数 563 浏览 1 评论 0原文

我最近在 NHibernate 项目中发现了一个错误报道&在本地修复了源代码,现在我有了一个更新的 nhibernate.dll

在 Umbraco 项目中,我已经用更新的 DLL 文件替换了原始引用。当我重建项目时,我遇到了很多错误,如下所示:

错误 30 类型“NHibernate.Bytecode.ICollectionTypeFactory”是 在未引用的程序集中定义。您必须添加一个 引用程序集“NHibernate,版本=3.1.0.4000, 文化=中立, PublicKeyToken=aa95f207798dfdb4'。 C:\NET\vhosts\umbraco_61ea7a8b6526\Source\Libraries\Umbraco.Framework.Persistence.NHibernate\OrmConfig\MsSqlCe4Configuration.cs 18 18 Umbraco.Framework.Persistence.NHibernate

在 90 年代,用较新的 dll 覆盖 dll 很容易。 2012 年如何升级该 dll?

I recently discovered a bug in NHibernate project & reported & fixed the source locally, now I've got a newer nhibernate.dll

In the Umbraco project I've replaced the original reference with the newer DLL file. When I rebuild the project I got many errors like below:

Error 30 The type 'NHibernate.Bytecode.ICollectionTypeFactory' is
defined in an assembly that is not referenced. You must add a
reference to assembly 'NHibernate, Version=3.1.0.4000,
Culture=neutral,
PublicKeyToken=aa95f207798dfdb4'. C:\NET\vhosts\umbraco_61ea7a8b6526\Source\Libraries\Umbraco.Framework.Persistence.NHibernate\OrmConfig\MsSqlCe4Configuration.cs 18 18 Umbraco.Framework.Persistence.NHibernate

In 90s it was easy as overwriting the dll with newer one. How can I upgrade that dll in 2012s?

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

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

发布评论

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

评论(1

や三分注定 2025-01-14 09:39:57

我认为问题在于您有一些程序集没有针对您的 NHibernate.dll 版本进行重建。如果由于某种原因您无法重建它,您可以尝试使用与原始版本相同的私钥对您的 NHibernate.dll 版本进行签名。

该私钥 NHibernate.snk 可在NHibernate 存储库中获取。

I think the problem is that you have some assembly that you did not rebuild against your version of NHibernate.dll. If, for some reason, you can't rebuild it, you can try signing your version of NHibernate.dll using the same private key as the original.

That private key, NHibernate.snk, is available in the NHibernate repository.

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