Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2019-09-02 23:07:20 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2019-09-02 23:07:20 +0300
commitcc2e03b0d63fc4d02483f03f56e2f8f7adee682f (patch)
treebd9ef0c8af44a4f5d2b56f261de970d51f30d885 /Installer
parent2e36c7222eba35e6e7ece4b8cdbdf5b3e5a792ff (diff)
Updated the assembly redirect file that is used to overwrite the normal app.config files on release builds.
Diffstat (limited to 'Installer')
-rw-r--r--Installer/AssemblyRedirects.xml16
1 files changed, 14 insertions, 2 deletions
diff --git a/Installer/AssemblyRedirects.xml b/Installer/AssemblyRedirects.xml
index f031c1dc1..88c4ee8a3 100644
--- a/Installer/AssemblyRedirects.xml
+++ b/Installer/AssemblyRedirects.xml
@@ -20,13 +20,25 @@
<!-- The spaces near the equation sign are used to prevent the version being set to the current build by the VersionStamp tool -->
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
- <bindingRedirect oldVersion="0.0.0.0 - 99.9.9.9" newVersion = "10.0.0.0"/>
+ <bindingRedirect oldVersion="0.0.0.0 - 99.9.9.9" newVersion = "12.0.0.0"/>
</dependentAssembly>
+ <!-- Support for backends that wants older versions of KeyVault.Core and System.Net.Http -->
+ <!-- The spaces near the equation sign are used to prevent the version being set to the current build by the VersionStamp tool -->
+ <dependentAssembly>
+ <assemblyIdentity name="Microsoft.Azure.KeyVault.Core" publicKeyToken="31bf3856ad364e35" culture="neutral" />
+ <bindingRedirect oldVersion="0.0.0.0-3.0.4.0" newVersion = "3.0.4.0" />
+ </dependentAssembly>
+ <dependentAssembly>
+ <assemblyIdentity name="System.Net.Http" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
+ <bindingRedirect oldVersion="0.0.0.0-4.1.1.3" newVersion = "4.2.0.0" />
+ </dependentAssembly>
+
+
</assemblyBinding>
</runtime>
<startup useLegacyV2RuntimeActivationPolicy="true">
- <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
+ <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2"/>
</startup>
</configuration> \ No newline at end of file