Home > OS >  Assembly mismatch when running the exe from a shared folder
Assembly mismatch when running the exe from a shared folder

Time:03-20

When I start my exe from c:, there is no problem. But when I copy the exe and the DLLs in debug folder to a network share, I get this error when I launch it:

Unhandled Exception: System.IO.FileLoadException: Could not load file or assembly 'System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

CodePudding user response:

The problem was resolved by copying the .exe.config file to the share.

  • Related