From 58723ceff6674fb904c35f59710293581416ecaa Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Tue, 4 Jun 2024 11:20:27 -0400 Subject: [PATCH] Bump nuget.exe used in pipeline to 6.x 5.8.0 is pretty old. Ideally, as long as 6.x works, we should use it. --- azure-pipelines/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure-pipelines/build.yml b/azure-pipelines/build.yml index 8da81c7..8cdc420 100644 --- a/azure-pipelines/build.yml +++ b/azure-pipelines/build.yml @@ -93,9 +93,9 @@ extends: vsVersion: $(BuildParameters.vsVersion) performMultiLevelLookup: true - task: NuGetToolInstaller@1 - displayName: Use NuGet 5.8.0 + displayName: Use NuGet 6.x inputs: - versionSpec: 5.8.0 + versionSpec: 6.x - task: NuGetCommand@2 displayName: NuGet restore - task: VSBuild@1