From 64d81f6b3fc6539b85010eb7b962124ec5c54de7 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 15 Jul 2022 12:29:49 +0000 Subject: [PATCH 1/5] Update dependencies from https://github.com/dotnet/linker build 20220714.1 Microsoft.NET.ILLink.Tasks From Version 7.0.100-1.22362.3 -> To Version 7.0.100-1.22364.1 --- eng/Version.Details.xml | 4 ++-- eng/Versions.props | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 3dac049c5c3fa..4a6c3ed3ccd42 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -238,9 +238,9 @@ https://github.com/dotnet/runtime 1967649721058a457157d4321af3e6fceaa5441b - + https://github.com/dotnet/linker - e2b3a925b1ee6c55f9b95540647ce8362fe9ee44 + 072ebe7c115e80bf2555bb5f02049379e6bf9722 https://github.com/dotnet/xharness diff --git a/eng/Versions.props b/eng/Versions.props index 99f010d68e354..7356c6c7b7c2e 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -169,7 +169,7 @@ 7.0.0-preview-20220707.1 - 7.0.100-1.22362.3 + 7.0.100-1.22364.1 $(MicrosoftNETILLinkTasksVersion) 7.0.0-rc.1.22362.2 From f031f53c9af6df3edb5b14bee741a232a0dbea30 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Sat, 16 Jul 2022 12:22:55 +0000 Subject: [PATCH 2/5] Update dependencies from https://github.com/dotnet/linker build 20220715.1 Microsoft.NET.ILLink.Tasks From Version 7.0.100-1.22362.3 -> To Version 7.0.100-1.22365.1 --- eng/Version.Details.xml | 4 ++-- eng/Versions.props | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 4a6c3ed3ccd42..514d39c2e8cf5 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -238,9 +238,9 @@ https://github.com/dotnet/runtime 1967649721058a457157d4321af3e6fceaa5441b - + https://github.com/dotnet/linker - 072ebe7c115e80bf2555bb5f02049379e6bf9722 + d27ff61b711aa685006d6d55057faf01b482114f https://github.com/dotnet/xharness diff --git a/eng/Versions.props b/eng/Versions.props index 7356c6c7b7c2e..2f4f9c3cd353f 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -169,7 +169,7 @@ 7.0.0-preview-20220707.1 - 7.0.100-1.22364.1 + 7.0.100-1.22365.1 $(MicrosoftNETILLinkTasksVersion) 7.0.0-rc.1.22362.2 From 0b21408cba0519b7e8122a537d7028c6c4446b30 Mon Sep 17 00:00:00 2001 From: Sven Boemer Date: Mon, 18 Jul 2022 09:37:23 -0700 Subject: [PATCH 3/5] Fix warning in lambda body --- .../Metadata/ReflectionEmitCachingMemberAccessor.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libraries/System.Text.Json/src/System/Text/Json/Serialization/Metadata/ReflectionEmitCachingMemberAccessor.cs b/src/libraries/System.Text.Json/src/System/Text/Json/Serialization/Metadata/ReflectionEmitCachingMemberAccessor.cs index 2e0e5e94b2a87..017d824d18d8d 100644 --- a/src/libraries/System.Text.Json/src/System/Text/Json/Serialization/Metadata/ReflectionEmitCachingMemberAccessor.cs +++ b/src/libraries/System.Text.Json/src/System/Text/Json/Serialization/Metadata/ReflectionEmitCachingMemberAccessor.cs @@ -27,7 +27,9 @@ internal sealed partial class ReflectionEmitCachingMemberAccessor : MemberAccess => s_cache.GetOrAdd((nameof(CreateConstructor), classType, null), [UnconditionalSuppressMessage("ReflectionAnalysis", "IL2077:UnrecognizedReflectionPattern", Justification = "Cannot apply DynamicallyAccessedMembersAttribute to tuple properties.")] +#pragma warning disable IL2077 // The suppression doesn't work for the trim analyzer: https://github.com/dotnet/roslyn/issues/59746 static (key) => s_sourceAccessor.CreateConstructor(key.declaringType)); +#pragma warning restore IL2077 public override Func CreateFieldGetter(FieldInfo fieldInfo) => s_cache.GetOrAdd((nameof(CreateFieldGetter), typeof(TProperty), fieldInfo), static key => s_sourceAccessor.CreateFieldGetter((FieldInfo)key.member!)); From 27105dc7d8074c6c77d885fec2c88504e7e68527 Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 19 Jul 2022 12:31:30 +0000 Subject: [PATCH 4/5] Update dependencies from https://github.com/dotnet/linker build 20220718.1 Microsoft.NET.ILLink.Tasks From Version 7.0.100-1.22362.3 -> To Version 7.0.100-1.22368.1 --- eng/Version.Details.xml | 4 ++-- eng/Versions.props | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 514d39c2e8cf5..12bd289f1d230 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -238,9 +238,9 @@ https://github.com/dotnet/runtime 1967649721058a457157d4321af3e6fceaa5441b - + https://github.com/dotnet/linker - d27ff61b711aa685006d6d55057faf01b482114f + 31a57b5762d8aceb4a61cc1e6cf96605cce417f1 https://github.com/dotnet/xharness diff --git a/eng/Versions.props b/eng/Versions.props index 2f4f9c3cd353f..b648ddf49a1ec 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -169,7 +169,7 @@ 7.0.0-preview-20220707.1 - 7.0.100-1.22365.1 + 7.0.100-1.22368.1 $(MicrosoftNETILLinkTasksVersion) 7.0.0-rc.1.22362.2 From 1e974c4907febf5df815ce9a0959f1ebfd6a1ddc Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Wed, 20 Jul 2022 12:32:25 +0000 Subject: [PATCH 5/5] Update dependencies from https://github.com/dotnet/linker build 20220719.1 Microsoft.NET.ILLink.Tasks From Version 7.0.100-1.22362.3 -> To Version 7.0.100-1.22369.1 --- eng/Version.Details.xml | 4 ++-- eng/Versions.props | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 12bd289f1d230..cbf1b64b64a4c 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -238,9 +238,9 @@ https://github.com/dotnet/runtime 1967649721058a457157d4321af3e6fceaa5441b - + https://github.com/dotnet/linker - 31a57b5762d8aceb4a61cc1e6cf96605cce417f1 + 60f48c55b5e0183bd1cee4cfa14f1d9ad3d90935 https://github.com/dotnet/xharness diff --git a/eng/Versions.props b/eng/Versions.props index b648ddf49a1ec..5da99c17d594a 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -169,7 +169,7 @@ 7.0.0-preview-20220707.1 - 7.0.100-1.22368.1 + 7.0.100-1.22369.1 $(MicrosoftNETILLinkTasksVersion) 7.0.0-rc.1.22362.2