重命名 ICSharpCode.SharpZipLib.dll

发布于 2024-10-11 18:05:49 字数 251 浏览 7 评论 0原文

好吧,我在将 ICSharpCode.SharpZipLib.dll 文件重命名为其他任何文件时遇到问题。我正在尝试缩短文件名。我在项目中引用了程序集,但是当程序到达我使用库的语句时。它会产生一个错误,指出找不到程序集或文件“ICSharpCode.SharpZipLib”。当我将文件名更改回 ICSharpCode.SharpZipLib.dll 时,应用程序正常工作。那么有什么办法可以更改文件名呢?另外,我是否可以在不违反许可证的情况下更改它(我将在商业应用程序中使用它)。谢谢。

well I am having a problem renaming the ICSharpCode.SharpZipLib.dll file to anythig else. I am trying to shorten the file name. I reference the assembly in the project, but when the program reaches the statements where I use the library. It spawns an error that it could not find the assembly or file 'ICSharpCode.SharpZipLib'. When I change the file name back to ICSharpCode.SharpZipLib.dll the application works noramally. So, is there any way to change the file name. Also, am I allowed to change it without violating the license (I am going to use it in a commercial application). Thanks.

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

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

发布评论

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

评论(3

萤火眠眠 2024-10-18 18:05:49

您可以尝试拆卸该库,然后使用新名称重新组装。

例如

1) 打开 Visual Studio 命令提示符。

ildasm /all /out=ICSharpCode.SharpZipLib.il ICSharpCode.SharpZipLib.dll
ilasm /dll /out=shortname.dll ICSharpCode.SharpZipLib.il

2)将shortname.dll添加到项目中

You could try to disassemble the library and then re-assemble with a new name.

E.g.

1) Open Visual Studio command prompt.

ildasm /all /out=ICSharpCode.SharpZipLib.il ICSharpCode.SharpZipLib.dll
ilasm /dll /out=shortname.dll ICSharpCode.SharpZipLib.il

2) Add shortname.dll to the project

花落人断肠 2024-10-18 18:05:49

由于您重命名了 DLL,.Net 运行时不知道如何自动找到它。

您可以调用 Assembly.Load 手动加载重命名的文件。
请注意,您需要在调用任何使用程序集的方法之前执行此操作,因为 JITter 需要在方法开始执行之前加载该方法(直接)使用的所有类型。

SInce you renamed the DLL, the .Net runtime doesn't know how to find it automatically.

You can call Assembly.Load to manually load the renamed file.
Note that you'll need to do that before calling any methods that use the assembly, since the JITter needs to load all types used (directly) by a method before the method starts executing.

↘人皮目录ツ 2024-10-18 18:05:49

DLL 已编译,因此重命名文件不会更改其中的命名空间。您可以通过 using 指令为其分配别名。

using zip = ICSharpCode.SharpZipLib;

The DLL is compiled so renaming the file will not change the namespace's inside of it anyway. You can assign an alias to it through a using directive.

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