From a2c644fbeaad2b49c7256e948df71a6d1d2c7a6d Mon Sep 17 00:00:00 2001 From: Jeff Handley Date: Mon, 16 Sep 2024 23:05:19 -0700 Subject: [PATCH] Suppress SYSLIB5005 for System.Formats.Nrbf as experimental --- .../src/PresentationCore/PresentationCore.csproj | 3 ++- .../src/PresentationFramework/PresentationFramework.csproj | 3 ++- .../PresentationCore.Tests/PresentationCore.Tests.csproj | 2 ++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationCore/PresentationCore.csproj b/src/Microsoft.DotNet.Wpf/src/PresentationCore/PresentationCore.csproj index fbe06aa0207..12637b94e62 100644 --- a/src/Microsoft.DotNet.Wpf/src/PresentationCore/PresentationCore.csproj +++ b/src/Microsoft.DotNet.Wpf/src/PresentationCore/PresentationCore.csproj @@ -4,7 +4,8 @@ $(DefineConstants);CORE_NATIVEMETHODS;PRESENTATION_CORE;COMMONDPS $(NoWarn);0618;0436;1058;1705;3001;3002;3003;3009;3024 true - $(NoWarn) + + $(NoWarn);SYSLIB5005 false MS.Internal.PresentationCore None diff --git a/src/Microsoft.DotNet.Wpf/src/PresentationFramework/PresentationFramework.csproj b/src/Microsoft.DotNet.Wpf/src/PresentationFramework/PresentationFramework.csproj index 6e84493822b..9572a2184d0 100644 --- a/src/Microsoft.DotNet.Wpf/src/PresentationFramework/PresentationFramework.csproj +++ b/src/Microsoft.DotNet.Wpf/src/PresentationFramework/PresentationFramework.csproj @@ -5,7 +5,8 @@ $(DefineConstants);WeakEventTelemetry true false - $(NoWarn);0618;1058 + + $(NoWarn);0618;1058;SYSLIB5005 None AnyCPU;x64;arm64 false diff --git a/src/Microsoft.DotNet.Wpf/tests/UnitTests/PresentationCore.Tests/PresentationCore.Tests.csproj b/src/Microsoft.DotNet.Wpf/tests/UnitTests/PresentationCore.Tests/PresentationCore.Tests.csproj index f4004eb3454..55fc1f2ebd8 100644 --- a/src/Microsoft.DotNet.Wpf/tests/UnitTests/PresentationCore.Tests/PresentationCore.Tests.csproj +++ b/src/Microsoft.DotNet.Wpf/tests/UnitTests/PresentationCore.Tests/PresentationCore.Tests.csproj @@ -7,6 +7,8 @@ enable AnyCPU;x64;x86;ARM64 true + + $(NoWarn);SYSLIB5005