diff --git a/build.cake b/build.cake
index 92c77257..adfdc68c 100644
--- a/build.cake
+++ b/build.cake
@@ -17,7 +17,7 @@ Task("Build")
{
c.SetConfiguration("Release")
.SetVerbosity(Verbosity.Minimal)
- .UseToolVersion(MSBuildToolVersion.VS2017);
+ .UseToolVersion(MSBuildToolVersion.VS2019);
});
}
else
@@ -33,6 +33,9 @@ Task("Build")
settings.Framework = "netstandard2.0";
DotNetCoreBuild("./src/SharpCompress/SharpCompress.csproj", settings);
+
+ settings.Framework = "netstandard2.1";
+ DotNetCoreBuild("./src/SharpCompress/SharpCompress.csproj", settings);
}
});
@@ -49,6 +52,9 @@ Task("Test")
Framework = "netcoreapp2.2"
};
DotNetCoreTest(file.ToString(), settings);
+
+ settings.Framework = "netcoreapp3.1";
+ DotNetCoreTest(file.ToString(), settings);
}
});
diff --git a/src/SharpCompress/SharpCompress.csproj b/src/SharpCompress/SharpCompress.csproj
index 43671e77..26a05301 100644
--- a/src/SharpCompress/SharpCompress.csproj
+++ b/src/SharpCompress/SharpCompress.csproj
@@ -23,8 +23,8 @@
SharpCompress is a compression library for NET Standard 1.3/2.0 that can unrar, decompress 7zip, decompress xz, zip/unzip, tar/untar lzip/unlzip, bzip2/unbzip2 and gzip/ungzip with forward-only reading and file random access APIs. Write support for zip/tar/bzip2/gzip is implemented.
-
-
+
+
diff --git a/tests/SharpCompress.Test/SharpCompress.Test.csproj b/tests/SharpCompress.Test/SharpCompress.Test.csproj
index 57e50001..b913fefc 100644
--- a/tests/SharpCompress.Test/SharpCompress.Test.csproj
+++ b/tests/SharpCompress.Test/SharpCompress.Test.csproj
@@ -12,7 +12,7 @@
-
+