From c1c4e1b718318db6bf9e65945bdc418478cfdc25 Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Fri, 3 May 2024 18:22:23 +0200 Subject: [PATCH] Create 0001-Make-IDE0073-silent.patch (#19664) --- .../vstest/0001-Make-IDE0073-silent.patch | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/SourceBuild/patches/vstest/0001-Make-IDE0073-silent.patch diff --git a/src/SourceBuild/patches/vstest/0001-Make-IDE0073-silent.patch b/src/SourceBuild/patches/vstest/0001-Make-IDE0073-silent.patch new file mode 100644 index 000000000..d4f43d6f3 --- /dev/null +++ b/src/SourceBuild/patches/vstest/0001-Make-IDE0073-silent.patch @@ -0,0 +1,25 @@ +From 7e4258f7c5ae7260d904962f60ce8e35c4fa4402 Mon Sep 17 00:00:00 2001 +From: Viktor Hofer +Date: Fri, 3 May 2024 17:24:56 +0200 +Subject: [PATCH] Make IDE0073 silent + +Backport / PR that fixes this: https://github.com/microsoft/vstest/pull/5020 + +--- + .editorconfig | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/.editorconfig b/.editorconfig +index b78e7a35..e2e9c09f 100644 +--- a/.editorconfig ++++ b/.editorconfig +@@ -393,7 +393,7 @@ dotnet_diagnostic.IDE0052.severity = silent + + # IDE1006: Naming Styles + dotnet_diagnostic.IDE1006.severity = warning +-dotnet_diagnostic.IDE0073.severity = warning ++dotnet_diagnostic.IDE0073.suggestion = warning + + # Naming rules + +--