From f3e7c3e6a4740b5fdfa2dad4ab1f4f48bc80ade3 Mon Sep 17 00:00:00 2001 From: Tomas Rylek Date: Mon, 18 Oct 2021 21:04:34 +0200 Subject: [PATCH 1/2] Fix for #60532 In stable package mode we should be setting CoreLib informational version to the ProductVersion according to the discussion on the issue thread. I have verified locally that this fixes the processinfo2 test for me that was previously failing in the StabilizePackageVersion mode. Please let me know how to proceed with the fix, whether you want me to just merge it into dotnet/runtime main, whether I should pursue its backport into 6.0 release and / or whether Matt considers cherry-picking my change to his stabilization PR. Thanks Tomas --- src/coreclr/System.Private.CoreLib/System.Private.CoreLib.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/src/coreclr/System.Private.CoreLib/System.Private.CoreLib.csproj b/src/coreclr/System.Private.CoreLib/System.Private.CoreLib.csproj index 36b4d648bdfb2c..8515997bcb42e6 100644 --- a/src/coreclr/System.Private.CoreLib/System.Private.CoreLib.csproj +++ b/src/coreclr/System.Private.CoreLib/System.Private.CoreLib.csproj @@ -46,6 +46,7 @@ v4.0.30319 $(ProductVersion) + $(ProductVersion) true $(NoWarn),0419,0649,CA2249,CA1830 enable From 7d0c10d65dc127f875d1fe766ac1fe3f84e7b778 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20K=C3=B6plinger?= Date: Wed, 20 Oct 2021 15:51:16 +0200 Subject: [PATCH 2/2] Port InformationVersion fix to Mono corelib (#60614) https://github.com/dotnet/runtime/pull/60572 for Mono's corelib. --- src/mono/System.Private.CoreLib/System.Private.CoreLib.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mono/System.Private.CoreLib/System.Private.CoreLib.csproj b/src/mono/System.Private.CoreLib/System.Private.CoreLib.csproj index 96911991c8d74c..cb69737648039a 100644 --- a/src/mono/System.Private.CoreLib/System.Private.CoreLib.csproj +++ b/src/mono/System.Private.CoreLib/System.Private.CoreLib.csproj @@ -32,6 +32,7 @@ v4.0.30319 $(ProductVersion) + $(ProductVersion) true $(NoWarn),0419,0649 enable