Created
March 8, 2013 16:12
-
-
Save tjrobinson/5117565 to your computer and use it in GitHub Desktop.
AppDomain.CurrentDomain.AssemblyResolve
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AppDomain.CurrentDomain.AssemblyResolve += (s, ea) => ea.Name.StartsWith("NHibernate,") ? Assembly.GetAssembly(typeof(NHibernate.ISession)) : null; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment