How to prevent a .NET application from loading/referencing an assembly from the GAC?

Viewed 38262

Can I configure a .NET application in a way (settings in Visual Studio) that it references a "local" assembly (not in GAC) instead of an assembly within the GAC, although both assemblies have the same name and the same version?

4 Answers

You can use ilmerge and merged the assemblies into a single library to get around it.

Related