Skip to content

Instantly share code, notes, and snippets.

@avargaskun
Created May 17, 2020 00:18
Show Gist options
  • Save avargaskun/f9f580d6741956241675ae0c420f719f to your computer and use it in GitHub Desktop.
Save avargaskun/f9f580d6741956241675ae0c420f719f to your computer and use it in GitHub Desktop.
App.config file to fix System.Net.Http load exception in Fusion++ 1.1
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment