From 436ee29cd886391ae4652d6ff6e16012c80b5092 Mon Sep 17 00:00:00 2001 From: Ben Broderick Phillips Date: Mon, 27 Mar 2023 10:03:06 -0400 Subject: [PATCH] Remove install step for NET 3.1 --- eng/pipelines/templates/steps/install-dotnet.yml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/eng/pipelines/templates/steps/install-dotnet.yml b/eng/pipelines/templates/steps/install-dotnet.yml index 0aeb5681ffa4..a61290dfcdc8 100644 --- a/eng/pipelines/templates/steps/install-dotnet.yml +++ b/eng/pipelines/templates/steps/install-dotnet.yml @@ -26,15 +26,6 @@ steps: packageType: sdk performMultiLevelLookup: true version: "6.0.x" - - task: UseDotNet@2 - condition: and(succeeded(), ne(variables['Agent.OS'], 'Windows_NT')) # Windows supports MultiLevelLookup and doesn't need explicit framework installation - displayName: 'Use .NET Core 3.1 SDK' - retryCountOnTaskFailure: 3 - inputs: - # AspNetCore runtime pack can't be installed outside of SDK and we need it for intergation tests - packageType: sdk - performMultiLevelLookup: true - version: "3.1.x" - task: Cache@2 inputs: key: 'nuget | "$(Agent.OS)" | $(Build.SourcesDirectory)/eng/Packages.Data.props | ${{parameters.NuGetCacheKey}}'