diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index dfff833..cff50b7 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -12,13 +12,13 @@ resources: - container: 3.1-focal image: mcr.microsoft.com/dotnet/core/sdk:3.1-focal - container: 5.0-focal - image: mcr.microsoft.com/dotnet/core/sdk:5.0-focal + image: mcr.microsoft.com/dotnet/sdk:5.0 stages: - stage: Build jobs: - job: build - container: 3.0-buster + container: 5.0-focal steps: - bash: | dotnet restore dotnet-packaging.sln @@ -78,18 +78,18 @@ stages: container: 3.1-focal command: tarball - # 5.0-focal-deb: - # container: 5.0-focal - # command: deb - # 5.0-disco-rpm: - # container: 5.0-focal - # command: rpm - # 5.0-focal-zip: - # container: 5.0-focal - # command: zip - # 5.0-focal-tarball: - # container: 5.0-focal - # command: tarball + 5.0-focal-deb: + container: 5.0-focal + command: deb + 5.0-focal-rpm: + container: 5.0-focal + command: rpm + 5.0-focal-zip: + container: 5.0-focal + command: zip + 5.0-focal-tarball: + container: 5.0-focal + command: tarball container: $[ variables['container'] ] steps: diff --git a/Directory.Build.props b/Directory.Build.props index 28e3010..4adba24 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -13,6 +13,6 @@ - + diff --git a/Packaging.Targets/Packaging.Targets.csproj b/Packaging.Targets/Packaging.Targets.csproj index 3dbaa89..c1744ca 100644 --- a/Packaging.Targets/Packaging.Targets.csproj +++ b/Packaging.Targets/Packaging.Targets.csproj @@ -19,15 +19,15 @@ - + all - + all - + all @@ -36,7 +36,7 @@ all - + @@ -51,7 +51,7 @@ - + true tools\netstandard2.0\ diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 16c0440..0000000 --- a/appveyor.yml +++ /dev/null @@ -1,46 +0,0 @@ -image: Visual Studio 2019 - -version: '0.1.{build}' -skip_branch_with_pr: true - -before_build: - - dotnet restore dotnet-packaging.sln - -build_script: - - dotnet pack dotnet-packaging.sln -c Release - -test_script: - - cmd: cd %APPVEYOR_BUILD_FOLDER%\Packaging.Targets.Tests\ - - cmd: dotnet restore - - cmd: dotnet build - - cmd: dotnet vstest bin\Debug\netcoreapp3.0\Packaging.Targets.Tests.dll /logger:trx;LogFileName=testresults.trx - - ps: '& (Join-Path $env:APPVEYOR_BUILD_FOLDER "appveyor-testresults.ps1")' - - cmd: cd .. - - - cmd: set /p NuGetPackageVersion= Exe - netcoreapp2.1;netcoreapp3.0 + netcoreapp2.1;netcoreapp3.0;net5.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 b3508e1..e206752 100644 --- a/dotnet-rpm/dotnet-rpm.csproj +++ b/dotnet-rpm/dotnet-rpm.csproj @@ -1,7 +1,7 @@  Exe - netcoreapp2.1;netcoreapp3.0 + netcoreapp2.1;netcoreapp3.0;net5.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 c777fe2..a3e4118 100644 --- a/dotnet-tarball/dotnet-tarball.csproj +++ b/dotnet-tarball/dotnet-tarball.csproj @@ -1,7 +1,7 @@  Exe - netcoreapp2.1;netcoreapp3.0 + netcoreapp2.1;netcoreapp3.0;net5.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 3178149..44a8f35 100644 --- a/dotnet-zip/dotnet-zip.csproj +++ b/dotnet-zip/dotnet-zip.csproj @@ -1,7 +1,7 @@  Exe - netcoreapp2.1;netcoreapp3.0 + netcoreapp2.1;netcoreapp3.0;net5.0 dotnet cli packaging zip archive Create .zip files of your .NET Core projects straight from the command line.