.NET assemblyBinding configuration ignored in machine.config - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T22:52:37Z http://stackoverflow.com/feeds/question/198668 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/198668/net-assemblybinding-configuration-ignored-in-machine-config 0 .NET assemblyBinding configuration ignored in machine.config jon without an h 2008-10-13T19:05:15Z 2008-12-03T07:17:01Z <p>I have a situation where I need to be able to load assemblies in the GAC based on their partial names. In order to do this I have added the following to my app.config file:</p> <pre><code>&lt;runtime&gt; &lt;assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"&gt; &lt;qualifyAssembly partialName="MyAssembly" fullName= "MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=0123456789abcdef"/&gt; &lt;/assemblyBinding&gt; &lt;/runtime&gt; </code></pre> <p>This works exactly the way I want it to. However, if I place the same element in my machine.config file, it seems to be ignored, and I get FileNotFoundExceptions when trying to load MyAssembly.</p> <p>The following is the assembly binding log when the element is in my app.config, and the bind succeeds:</p> <pre>LOG: This bind starts in default load context. LOG: Using application configuration file: C:\Documents and Settings\jon_scheiding\My Documents\Source\Testing\Test Projects 1\Cmd\bin\Debug\Testers.Cmd.vshost.exe.config LOG: Using machine configuration file from C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\config\machine.config. LOG: Partial reference qualified from config file. New reference: MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=0123456789abcdef. LOG: Post-policy reference: MyAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=0123456789abcdef LOG: Found assembly by looking in the GAC. LOG: Binding succeeds. Returns assembly from C:\WINDOWS\assembly\GAC_MSIL\MyAssembly\1.0.0.0__b20f4683c1030dbd\MyAssembly.dll. LOG: Assembly is loaded in default load context.</pre> <p>Contrast that with the log when my configuration is in machine.config, and the bind fails:</p> <pre>LOG: This bind starts in default load context. LOG: Using application configuration file: C:\Documents and Settings\jon_scheiding\My Documents\Source\Testing\Test Projects 1\Cmd\bin\Debug\Testers.Cmd.vshost.exe.config LOG: Using machine configuration file from C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\config\machine.config. LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind). LOG: Attempting download of new URL file:///C:/Documents and Settings/jon_scheiding/My Documents/Source/Testing/Test Projects 1/Cmd/bin/Debug/MyAssembly.DLL. LOG: Attempting download of new URL file:///C:/Documents and Settings/jon_scheiding/My Documents/Source/Testing/Test Projects 1/Cmd/bin/Debug/MyAssembly/MyAssembly.DLL. LOG: Attempting download of new URL file:///C:/Documents and Settings/jon_scheiding/My Documents/Source/Testing/Test Projects 1/Cmd/bin/Debug/MyAssembly.EXE. LOG: Attempting download of new URL file:///C:/Documents and Settings/jon_scheiding/My Documents/Source/Testing/Test Projects 1/Cmd/bin/Debug/MyAssembly/MyAssembly.EXE. LOG: All probing URLs attempted and failed.</pre> <p>The problem seems to be the fourth line, "Policy not being applied to reference at this time." However, I can find very little documentation on what this message means, or how to address it.</p> <p>How can I get the framework to recognize my &lt;runtime&gt; element?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/198668/net-assemblybinding-configuration-ignored-in-machine-config/336403#336403 0 Answer by Tom for .NET assemblyBinding configuration ignored in machine.config Tom 2008-12-03T07:17:01Z 2008-12-03T07:17:01Z <p>The framework won't read qualifyAssebmly configuration from machine.config, it only reads it from your application configuration file. </p> <p>The framework does recognize your runtim element, however it does not recognize the qualifyAssembly element. </p>