Created
April 23, 2019 09:43
-
-
Save cezarypiatek/3c307007c72207333269d32ad5a1532e to your computer and use it in GitHub Desktop.
External binding redirect
This file contains 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
</configuration> | |
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | |
<linkedConfiguration href="file:AssemblyBinding.xml"/> | |
</assemblyBinding> | |
</configuration> |
This file contains 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
<?xml version="1.0" encoding="utf-8" ?> | |
<configuration> | |
<runtime> | |
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | |
<dependentAssembly> | |
<assemblyIdentity name="Nhibernate" publicKeyToken="aa95f207798dfdb4" /> | |
<bindingRedirect oldVersion="0.0.0.0-5.2.0.0" newVersion="5.2.0.0" /> | |
</dependentAssembly> | |
</assemblyBinding> | |
</runtime> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment