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 Hsu <kennethhsu@gmail.com>2020-07-27 04:12:54 +0300
committerKenneth Hsu <kennethhsu@gmail.com>2020-07-27 05:46:01 +0300
commite9640726904710ffb476ade2608923061cc9db7a (patch)
tree746a67c31e1a2d17c265b81ff3377c7f33c20d78 /Duplicati/Library/Common/packages.config
parente7daffcb3105c0c43770cc79084740016ba44170 (diff)
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.
Diffstat (limited to 'Duplicati/Library/Common/packages.config')
-rw-r--r--Duplicati/Library/Common/packages.config8
1 files changed, 4 insertions, 4 deletions
diff --git a/Duplicati/Library/Common/packages.config b/Duplicati/Library/Common/packages.config
index 0e8dd406b..9ce0bc539 100644
--- a/Duplicati/Library/Common/packages.config
+++ b/Duplicati/Library/Common/packages.config
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
- <package id="AlphaFS" version="2.2.6" targetFramework="net462" />
- <package id="AlphaVSS" version="1.4.0" targetFramework="net462" />
- <package id="Newtonsoft.Json" version="12.0.2" targetFramework="net462" />
-</packages> \ No newline at end of file
+ <package id="AlphaFS" version="2.2.6" targetFramework="net471" />
+ <package id="AlphaVSS" version="1.4.0" targetFramework="net471" />
+ <package id="Newtonsoft.Json" version="12.0.2" targetFramework="net471" />
+</packages>