From 17bd4778cc1cb8531dbd8c1e3ed6f5c439f4f0ea Mon Sep 17 00:00:00 2001 From: dseefeld Date: Tue, 27 Jul 2021 18:11:07 +0000 Subject: [PATCH] Add NoWarn for SYSLIB0013 Don't warn on SYSLIB0013 - Uri.EscapeUriString() is obsolete. This is marked obsolete for net6.0 and changing it to Uri.EscapeDataString() changes behavior. Ignore the warning. --- .../Microsoft.DotNet.Arcade.Sdk.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.DotNet.Arcade.Sdk/Microsoft.DotNet.Arcade.Sdk.csproj b/src/Microsoft.DotNet.Arcade.Sdk/Microsoft.DotNet.Arcade.Sdk.csproj index 7cc96f188ed..63544dd9c13 100644 --- a/src/Microsoft.DotNet.Arcade.Sdk/Microsoft.DotNet.Arcade.Sdk.csproj +++ b/src/Microsoft.DotNet.Arcade.Sdk/Microsoft.DotNet.Arcade.Sdk.csproj @@ -19,7 +19,7 @@ false false <_GeneratedVersionFilePath>$(IntermediateOutputPath)DefaultVersions.Generated.props - 3021;NU5105 + 3021;NU5105;SYSLIB0013