我已經安裝了一個使用gacutil的DLL。我可以通過gacutil安裝,但不能卸載相同的DLL
gacutil.exe /i SI.ArchiveService.CommonLogic.Exceptions.dll
使用gacutil/l顯示它確實已安裝。
SI.ArchiveService.CommonLogic.Exceptions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=925c8734ae397609, processorArchitecture=MSIL
然後我想卸載它。
gacutil.exe /u SI.ArchiveService.CommonLogic.Exceptions.dll
Microsoft (R) .NET Global Assembly Cache Utility. Version 3.5.30729.1
Copyright (c) Microsoft Corporation. All rights reserved.
No assemblies found matching: SI.ArchiveService.CommonLogic.Exceptions.dll
Number of assemblies uninstalled = 0
Number of failures = 0
爲什麼不能正常工作?我如何卸載它?