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

AssemblyRedirects.xml « Installer - github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca39a1d2f83ed1e55af550822b6a097e68dd0fed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<configuration>
    <runtime>
        <loadFromRemoteSources enabled="true"/>
        <AppContextSwitchOverrides value="Switch.System.IO.UseLegacyPathHandling=false" />

        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">

            <!-- Support for loading older backends with the current executable version -->
            <dependentAssembly>
                <assemblyIdentity name="Duplicati.Library.Utility" publicKeyToken="8bfe994a39631a7b" />
                <bindingRedirect oldVersion="0.0.0.0 - 99.9.9.9" newVersion="2.0.0.7" />
            </dependentAssembly>

            <!-- Support for loading older backends with the current executable version -->
            <dependentAssembly>
                <assemblyIdentity name="Duplicati.Library.Interface" publicKeyToken="8bfe994a39631a7b" />
                <bindingRedirect oldVersion="0.0.0.0 - 99.9.9.9" newVersion="2.0.0.7" />
            </dependentAssembly>

            <!-- Support for backends that wants older versions of NewtonSoft.Json -->
            <!-- 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 = "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.2.0.0" newVersion = "4.0.0.0" />
            </dependentAssembly>


        </assemblyBinding>
    </runtime>

    <startup useLegacyV2RuntimeActivationPolicy="true">
        <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.1"/>
    </startup>
</configuration>