diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 9de9109..28f5961 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -19,6 +19,8 @@ resources: image: mcr.microsoft.com/dotnet/sdk:5.0-bullseye-slim - container: 5.0-nanoserver image: mcr.microsoft.com/dotnet/sdk:5.0-nanoserver-1809 + - container: 6.0-focal + image: mcr.microsoft.com/dotnet/sdk:6.0-focal stages: - stage: Build @@ -121,6 +123,18 @@ stages: command: zip 5.0-bullseye-tarball: container: 5.0-bullseye + + 6.0-focal-deb: + container: 5.0-focal + command: deb + 6.0-focal-rpm: + container: 5.0-focal + command: rpm + 6.0-focal-zip: + container: 5.0-focal + command: zip + 6.0-focal-tarball: + container: 5.0-focal command: tarball container: $[ variables['container'] ] diff --git a/Packaging.Targets.Tests/Packaging.Targets.Tests.csproj b/Packaging.Targets.Tests/Packaging.Targets.Tests.csproj index f498bb0..67459c8 100644 --- a/Packaging.Targets.Tests/Packaging.Targets.Tests.csproj +++ b/Packaging.Targets.Tests/Packaging.Targets.Tests.csproj @@ -1,7 +1,7 @@  - net5.0 + net6.0 diff --git a/dotnet-deb/dotnet-deb.csproj b/dotnet-deb/dotnet-deb.csproj index 5b04a17..88fec27 100644 --- a/dotnet-deb/dotnet-deb.csproj +++ b/dotnet-deb/dotnet-deb.csproj @@ -1,7 +1,7 @@  Exe - netcoreapp3.1;net5.0 + netcoreapp3.1;net5.0;net6.0 dotnet cli packaging deb debian ubuntu mint installer Create Debian and Ubuntu installers (.deb files ) of your .NET Core projects straight from the command line. diff --git a/dotnet-rpm/dotnet-rpm.csproj b/dotnet-rpm/dotnet-rpm.csproj index 7d9e0b7..6dff986 100644 --- a/dotnet-rpm/dotnet-rpm.csproj +++ b/dotnet-rpm/dotnet-rpm.csproj @@ -1,7 +1,7 @@  Exe - netcoreapp3.1;net5.0 + netcoreapp3.1;net5.0;net6.0 dotnet cli packaging rpm package installer Create RPM packages (.rpm files) of your .NET Core projects straight from the command line. diff --git a/dotnet-tarball/dotnet-tarball.csproj b/dotnet-tarball/dotnet-tarball.csproj index 2682c07..1a68912 100644 --- a/dotnet-tarball/dotnet-tarball.csproj +++ b/dotnet-tarball/dotnet-tarball.csproj @@ -1,7 +1,7 @@  Exe - netcoreapp3.1;net5.0 + netcoreapp3.1;net5.0;net6.0 dotnet cli packaging tarball tar.gz archive Create tarballs (.tar.gz files) of your .NET Core projects straight from the command line. diff --git a/dotnet-zip/dotnet-zip.csproj b/dotnet-zip/dotnet-zip.csproj index 4cc3974..7fbca7a 100644 --- a/dotnet-zip/dotnet-zip.csproj +++ b/dotnet-zip/dotnet-zip.csproj @@ -1,7 +1,7 @@  Exe - netcoreapp3.1;net5.0 + netcoreapp3.1;net5.0;net6.0 dotnet cli packaging zip archive Create .zip files of your .NET Core projects straight from the command line.