tonerdo / pose

Replace any .NET method (including static and non-virtual) with a delegate
MIT License
1.07k stars 75 forks source link

A strongly-named assembly is required #52

Open AdamYoblick opened 4 years ago

AdamYoblick commented 4 years ago

Trying to use Pose from other strongly named assemblies and getting the following exception:

System.IO.FileLoadException : Could not load file or assembly 'Pose, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. A strongly-named assembly is required. (Exception from HRESULT: 0x80131044)

Any chance of getting this assembly strongly-named?

nbarbettini commented 4 years ago

FWIW, for any open-source projects that don't have a strong-named assembly, you can download the source and compile and strong-name it yourself. It effectively becomes your own private fork of the library, but it does get around this error.