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?
|
1
|
|
|
|
|
|
If both assemblies are strong-named (signed), the CLR will always load from the GAC. Here are the steps the runtime uses to resolve assembly references (from How the Runtime Locates Assemblies):
As stated later in that same article:
So if you can afford to remove signing from the local assembly, the application will use it instead of the one in the GAC. For more detail than you could probably ever want about the runtime-binding mechanisms, see Suzanne Cook's blog. This blog entry from Scott Hanselman also provides a great overview of the binding process. |
||
|
|
|
|
Did you see this answer? It sounds like you are trying to do the same thing. |
||
|
