Forcing the ASP.NET Application to load the assembly from bin not from GAC

后端 未结 8 1400
死守一世寂寞
死守一世寂寞 2020-12-15 21:18

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

相关标签:
8条回答
  • 2020-12-15 21:46

    Why not install the version that you like into the GAC and then reference it in the GAC?

    0 讨论(0)
  • 2020-12-15 21:49

    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.

    0 讨论(0)
  • 2020-12-15 21:50

    Instead of using bindingRedirect, you can specify the codebase path. I have a working example with MySQL.Data.dll.

    <dependentAssembly>
        <assemblyIdentity name="MySql.Data" publicKeyToken="c5687fc88969c44d" culture="neutral" />
        <codebase version="5.2.5.0" href="/bin/MySQL.Data.dll" />        
      </dependentAssembly>
    

    This can be done in Web.config of the web application.

    0 讨论(0)
  • 2020-12-15 21:55

    Based on the excerpted notes on assembly loading order in this answer: How to prevent a .NET application from loading/referencing an assembly from the GAC?

    I am guessing that calling LoadLibrary on the local DLL file before asking the library to load as an assembly, might move it up in the search order for you.

    Sadly, I am not sure how to get your LoadLibrary call to run before the framework starts loading referenced assemblies.

    So this is just an idea, not a full answer.

    0 讨论(0)
  • 2020-12-15 21:58

    To redirect one version to another, use the <bindingRedirect> element. The oldVersion attribute can specify either a single version, or a range of versions. For example, specifies that the runtime should use version 2.0.0.0 instead of the assembly versions between 1.1.0.0 and 1.2.0.0.

    s

    0 讨论(0)
  • 2020-12-15 22:06

    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 the machine.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:

    <configuration>
      <runtime>
        <developmentMode developerInstallation="true"/>
      </runtime>
    </configuration>
    

    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 the DEVPATH (and its subdirectories) prior to probing the GAC.

    An FAQ of DEVPATH and DEVOVERRIDE 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 on DEVPATH.

    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:

    LOG: Found assembly in DEVOVERRIDE path D:\testassemblies\Test.DLL
    

    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):

    [HKEY_CURRENT_USER\
        SOFTWARE\
        Microsoft\
        .NETFramework\
        v2.0.50727\AssemblyFoldersEx\
        DEVPATH]@="C:\SharedAssemblies"
    
    0 讨论(0)
提交回复
热议问题