From ccbec78eca528642c2460adc47086a36b1206110 Mon Sep 17 00:00:00 2001 From: Sergey Tepliakov Date: Fri, 10 Mar 2023 17:58:28 +0000 Subject: [PATCH] Merged PR 706489: Update Microsoft.Win32.Registry to 4.4.0 This PR fixes the discrepancy between the artifact services package that requires 4.4.0 version and BuildXL.Utilities that used to require 4.3.0 version. Without this change referencing BUildXL.Utilities package was causing a nuget package downgrade. Related work items: #2039361 --- cg/nuget/cgmanifest.json | 2 +- config.nuget.dotnetcore.dsc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cg/nuget/cgmanifest.json b/cg/nuget/cgmanifest.json index e1e853739..d3d714d09 100644 --- a/cg/nuget/cgmanifest.json +++ b/cg/nuget/cgmanifest.json @@ -2418,7 +2418,7 @@ "Type": "NuGet", "NuGet": { "Name": "Microsoft.Win32.Registry", - "Version": "4.3.0" + "Version": "4.4.0" } } }, diff --git a/config.nuget.dotnetcore.dsc b/config.nuget.dotnetcore.dsc index b2eb56e84..a65040aab 100644 --- a/config.nuget.dotnetcore.dsc +++ b/config.nuget.dotnetcore.dsc @@ -122,7 +122,7 @@ export const pkgs = [ // Packages { id: "Microsoft.CSharp", version: pkgVersion }, { id: "Microsoft.Win32.Primitives", version: pkgVersion }, - { id: "Microsoft.Win32.Registry", version: pkgVersion }, + { id: "Microsoft.Win32.Registry", version: "4.4.0" }, // This is the version Artifact Services relies on. { id: "System.AppContext", version: pkgVersion }, { id: "System.Collections", version: pkgVersion }, { id: "System.Collections.Concurrent", version: pkgVersion },