How do I force an assembly to uninstall from the GAC?

前端 未结 2 1213
没有蜡笔的小新
没有蜡笔的小新 2021-01-24 02:36

I\'ve developed a simple installation package using WiX that installs an assembly called WBRT.Configuration into the Global Assembly Cache (GAC). While the file ins

2条回答
  •  无人及你
    2021-01-24 03:21

    First, verify that your assembly is not locked by another process via gacutil.exe

    gacutil /u WBRT.Configuration
    

    If the above is OK make sure the file parent container has no permanent flag - Permanent="no"

    
        
    
    

提交回复
热议问题