From 0ccd704f83f7d944364f0f460d6148e3aaa3ab21 Mon Sep 17 00:00:00 2001 From: Chidozie Ononiwu Date: Tue, 20 Jul 2021 13:28:49 -0700 Subject: [PATCH] Dont install net core --- eng/pipelines/templates/jobs/ci.mgmt.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/eng/pipelines/templates/jobs/ci.mgmt.yml b/eng/pipelines/templates/jobs/ci.mgmt.yml index 9355ae7864e9c..26e2b3c860fcb 100644 --- a/eng/pipelines/templates/jobs/ci.mgmt.yml +++ b/eng/pipelines/templates/jobs/ci.mgmt.yml @@ -5,7 +5,6 @@ jobs: vmImage: windows-2019 steps: #- script: "echo $(system.pullrequest.pullrequestnumber), https://github.com/$(build.repository.id), https://github.com/$(build.repository.ID)" - - template: /eng/pipelines/templates/steps/install-dotnet.yml - script: | if "$(BuildConfiguration)" == "Release" (set SkipTests=true) else (set SkipTests=false) dotnet msbuild mgmt.proj /v:m /t:CreateNugetPackage /p:Configuration=$(BuildConfiguration) /p:SkipTests=%SkipTests% /p:PackageOutputPath=$(Build.ArtifactStagingDirectory) /p:Scope=${{parameters.Scope}} /p:ForPublishing=$(ShouldPublish) $(loggingArgs) $(RPScopeArgs)" @@ -60,9 +59,6 @@ jobs: parameters: AgentImage: $(OSVmImage) - script: "echo $(system.pullrequest.pullrequestnumber), http://github.com/$(build.repository.id), http://github.com/$(build.repository.ID)" - - template: /eng/pipelines/templates/steps/install-dotnet.yml - parameters: - NuGetCacheKey: Test - script: "dotnet msbuild mgmt.proj /v:n /t:RunTests /p:Scope=${{parameters.Scope}} /p:ForPublishing=$(ShouldPublish) /clp:ShowtimeStamp $(RPScopeArgs)" displayName: "Build & Run Tests" - task: PublishTestResults@2