From e9640726904710ffb476ade2608923061cc9db7a Mon Sep 17 00:00:00 2001 From: Kenneth Hsu Date: Sun, 26 Jul 2020 18:12:54 -0700 Subject: Target .NET Framework 4.7.1. This updates all projects to target .NET Framework 4.7.1. The TencentCOS and Tardigrade backends depend on .NET Standard 2.0. When a .NET Framework prior to 4.7.1 is targeted, the system cannot be sure that all the dependencies exist, so it copies all dependent assemblies to the output directory. This causes many assemblies from the System namespace to become bundled in the release. https://stackoverflow.com/a/48875007 We had previously attempted to make individual projects target 4.7.1 (see pull request #4242), but this can cause compatibility issues when 4.6.2 projects depend on 4.7.1. projects. This will require Mono 5.10.0 or greater (previously, we required 5.0.0 or greater). https://www.mono-project.com/docs/about-mono/releases/5.10.0/#class-libraries This fixes issue #4234. --- Duplicati/Library/Snapshots/Duplicati.Library.Snapshots.csproj | 2 +- Duplicati/Library/Snapshots/app.config | 2 +- Duplicati/Library/Snapshots/packages.config | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'Duplicati/Library/Snapshots') diff --git a/Duplicati/Library/Snapshots/Duplicati.Library.Snapshots.csproj b/Duplicati/Library/Snapshots/Duplicati.Library.Snapshots.csproj index 36f6ebd24..2d7f03fb7 100644 --- a/Duplicati/Library/Snapshots/Duplicati.Library.Snapshots.csproj +++ b/Duplicati/Library/Snapshots/Duplicati.Library.Snapshots.csproj @@ -15,7 +15,7 @@ 3.5 - v4.6.2 + v4.7.1 false diff --git a/Duplicati/Library/Snapshots/app.config b/Duplicati/Library/Snapshots/app.config index a1d2c2556..92ad670ed 100644 --- a/Duplicati/Library/Snapshots/app.config +++ b/Duplicati/Library/Snapshots/app.config @@ -1,7 +1,7 @@ - + diff --git a/Duplicati/Library/Snapshots/packages.config b/Duplicati/Library/Snapshots/packages.config index 0e8dd406b..9ce0bc539 100644 --- a/Duplicati/Library/Snapshots/packages.config +++ b/Duplicati/Library/Snapshots/packages.config @@ -1,6 +1,6 @@  - - - - \ No newline at end of file + + + + -- cgit v1.2.3