Is there any way to force my asp.net application to load the assembly from local bin directory since there is another older version of the assembly with the same name in the gac?
I can't delete the gac version since other applications are using it and I am facing some difficulties when adding the newer version to the gac.
Instead of using bindingRedirect, you can specify the codebase path. I have a working example with MySQL.Data.dll.
This can be done in Web.config of the web application.
The oldVersion configuration that is suggested by Muse VSExtensions works! You can use the strong name for the local assembly: Please look this page: http://msdn.microsoft.com/en-us/library/7wd6ex19.aspx
Basically in web.config add something like:
That way if i have an assembly in the gac that can be from version 2.0.0.0 to version 2.5.0.0 all the calls would be redirected to the newVersion (3.0.0.0)
In the assemblies section I added the assembly:
And that's it.
As an alternative to the proposed solution, during development you can bind to whatever assembly you want overriding the GAC completely by setting the
DEVPATH
environment variable and enabling Development Mode in themachine.config
. I think this is by far the easiest way to achieve what you want, but should not be used in production.This solves the issue where version of your assembly and the one in the GAC are the same, if versions are different, you should use the
bindingRedirect
approach mentioned here by several users.First, add the following to
machine.config
:Then, set the
DEVPATH
environment variable to the location of your non-signed assemblies. This will force Fusion's DEVOVERRIDE mode to kick in and search theDEVPATH
(and its subdirectories) prior to probing the GAC.An FAQ of
DEVPATH
andDEVOVERRIDE
on MSDN will answer most questions on the effects of using this.Fusion (.NET's assembly loader) will search by name and version only, it will treat strongly named assemblies equal to other assemblies, won't search the GAC before searching
DEVPATH
, and simply returns the first match found. You should use the Fusion Log Viewer (fuslogvw) to see that you properly enabled it, as explained in this blog post onDEVPATH
.New to using FusLogVw? Scott Hanselman wrote an excellent intro. The interface of the Viewer is rather archaïc and takes a little getting used to.
Note that the Fusion Log Viewer (or Assembly Binding Log Viewer, what's in a name) will confusingly say that you used the
DEVOVERRIDE
environment variable. It should look something like this:NOTE: if you want Visual Studio to load the assemblies from the
DEVPATH
location, you should set a registry key to this location, i.e., set (check the .NET version key to match your .NET version):I found it
To force your application to read from local bin directory you have to remove signing from your assembly and then the application will load the assembly from bin.
Thanks Wyatt Barnett and murad.
Change the version number, strong name the assembly and reference the strongly named higher version you deploy with your solution.
Why not install the version that you like into the GAC and then reference it in the GAC?