如何在gac中安装ajaxControlToolKit.dll
我的项目中有两个不同版本的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为了将程序集添加到 GAC 中,需要对该程序集进行强命名。
如果您有代码,则可以执行此操作,然后将其添加到 GAC。
如果您没有代码,只有程序集本身,您仍然可以使用程序集链接器对程序集进行强命名:
http://msdn.microsoft.com/en-us/library/xc31ft41.aspx
问候
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
Regards