diff --git a/build.cake b/build.cake index ad76ca58f..362cdc057 100644 --- a/build.cake +++ b/build.cake @@ -154,21 +154,21 @@ Task("Experimental-DotNetCore") { string serverProjectPath = "./src/Jackett.Server/Jackett.Server.csproj"; - DotNetCorePublish(serverProjectPath, "netcoreapp2.1", "win-x86"); - DotNetCorePublish(serverProjectPath, "netcoreapp2.1", "osx-x64"); - DotNetCorePublish(serverProjectPath, "netcoreapp2.1", "linux-x64"); - DotNetCorePublish(serverProjectPath, "netcoreapp2.1", "linux-arm"); + DotNetCorePublish(serverProjectPath, "netcoreapp2.2", "win-x86"); + DotNetCorePublish(serverProjectPath, "netcoreapp2.2", "osx-x64"); + DotNetCorePublish(serverProjectPath, "netcoreapp2.2", "linux-x64"); + DotNetCorePublish(serverProjectPath, "netcoreapp2.2", "linux-arm"); - Zip("./BuildOutput/Experimental/netcoreapp2.1/win-x86", $"./{artifactsDirName}/Experimental.netcoreapp.win-x86.zip"); - Zip("./BuildOutput/Experimental/netcoreapp2.1/osx-x64", $"./{artifactsDirName}/Experimental.netcoreapp.osx-x64.zip"); - Gzip("./BuildOutput/Experimental/netcoreapp2.1/linux-x64", $"./{artifactsDirName}", "Jackett", "Experimental.netcoreapp.linux-x64.tar.gz"); - Gzip("./BuildOutput/Experimental/netcoreapp2.1/linux-arm", $"./{artifactsDirName}", "Jackett", "Experimental.netcoreapp.linux-arm.tar.gz"); + Zip("./BuildOutput/Experimental/netcoreapp2.2/win-x86", $"./{artifactsDirName}/Experimental.netcoreapp.win-x86.zip"); + Zip("./BuildOutput/Experimental/netcoreapp2.2/osx-x64", $"./{artifactsDirName}/Experimental.netcoreapp.osx-x64.zip"); + Gzip("./BuildOutput/Experimental/netcoreapp2.2/linux-x64", $"./{artifactsDirName}", "Jackett", "Experimental.netcoreapp.linux-x64.tar.gz"); + Gzip("./BuildOutput/Experimental/netcoreapp2.2/linux-arm", $"./{artifactsDirName}", "Jackett", "Experimental.netcoreapp.linux-arm.tar.gz"); }); Task("Package") .IsDependentOn("Package-Windows-Full-Framework") .IsDependentOn("Package-Mono-Full-Framework") - //.IsDependentOn("Experimental-DotNetCore") + .IsDependentOn("Experimental-DotNetCore") .Does(() => { Information("Packaging completed");