what is cache AppData\Local\assembly\dl3?

后端 未结 1 847
说谎
说谎 2020-12-10 11:36

I have this assembly that for some reason Windows started to load from this path:

C:\\Users\\marius\\AppData\\Local\\assembly\\dl3\\MP6PT6BV.2Z4\\GMRQEZL9.LC         


        
相关标签:
1条回答
  • 2020-12-10 12:12

    I found the answer to my question. That is the "shadow copy" folder for the .NET framework as specified in Windows Registry under HKCU\Software\Microsoft\Fusion\DownloadCacheLocation. Shadow copying is a feature in the .NET framework to allow assemblies used in an app domain to be updated without unloading the app domain. More about this feature in MSDN http://msdn.microsoft.com/en-us/library/ms404279.aspx.

    The app domain where I was loading the assembly was configured to shadow copy files, by setting the ShadowCopyFiles property to true.

    0 讨论(0)
提交回复
热议问题