如何在gac中安装ajaxControlToolKit.dll

发布于 2024-09-05 02:34:28 字数 86 浏览 5 评论 0原文

我的项目中有两个不同版本的 ajaxcontroltoolkit dll,我不能将它们都放在 bin 文件夹中,所以我需要将它们安装在 gac 中。怎么做呢。

I have two different version dll of ajaxcontroltoolkit in a project, i can not put both in bin folder so i need to install them in gac. How to do it.

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

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

发布评论

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

评论(1

不醒的梦 2024-09-12 02:34:28

为了将程序集添加到 GAC 中,需要对该程序集进行强命名。
如果您有代码,则可以执行此操作,然后将其添加到 GAC。
如果您没有代码,只有程序集本身,您仍然可以使用程序集链接器对程序集进行强命名:

http://msdn.microsoft.com/en-us/library/xc31ft41.aspx

al /out:MyAssembly.dll MyModule.netmodule /keyfile:sgKey.snk

问候

In order to add an assembly into the GAC, the assembly needs to be strongly named.
If you have the code, you can do it and then add it to the GAC.
If you don't have the code but the assembly itself, you still can strong name the assembly using the Assembly Linker :

http://msdn.microsoft.com/en-us/library/xc31ft41.aspx

al /out:MyAssembly.dll MyModule.netmodule /keyfile:sgKey.snk

Regards

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