From 57c01c3297efaf8d0f0006c261bfc6baf4f7eddb Mon Sep 17 00:00:00 2001 From: d-barker <31757611+d-barker@users.noreply.github.com> Date: Fri, 24 Jan 2020 16:00:03 +0800 Subject: [PATCH] Update azure-pipelines.yml for Azure Pipelines --- azure-pipelines.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 0d2d460..f20b46a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,7 +7,7 @@ trigger: - master pool: - vmImage: 'windows-latest' + vmImage: 'ubuntu-latest' variables: solution: '**/*.sln' @@ -29,7 +29,7 @@ steps: - task: DotNetCoreCLI@2 inputs: - command: 'build' + command: 'test' projects: './test/AspNetCore.Identity.MongoDbCore.IntegrationTests/AspNetCore.Identity.MongoDbCore.IntegrationTests.csproj' arguments: '--configuration $(buildConfiguration)' @@ -41,6 +41,15 @@ steps: arguments: '-p:NuspecFile=./src/AspnetCore.Identity.MongoDbCore.nuspec' packDirectory: $(build.artifactStagingDirectory)/Nuget nobuild: true + verbosityPack: 'Minimal' + +- task: DotNetCoreCLI@2 + inputs: + command: 'pack' + packagesToPack: '**/*.csproj' + nobuild: true + versioningScheme: 'off' + verbosityPack: 'Minimal' - task: NuGetCommand@2 inputs: