From 4d1585ed689235e00ffdb2e316e80f40bf3c2ed4 Mon Sep 17 00:00:00 2001 From: Chris LaFreniere <40371649+chlafreniere@users.noreply.github.com> Date: Wed, 22 Mar 2023 17:56:48 -0700 Subject: [PATCH] .editorconfig Cleanup for cs1711 (#1951) * Cleanup warning * Add comment about resolved compiler warnings * Also remove CS1711 issue for Kusto --- .editorconfig | 4 +++- src/Microsoft.Kusto.ServiceLayer/Utility/TaskExtensions.cs | 1 - src/Microsoft.SqlTools.ServiceLayer/Utility/TaskExtensions.cs | 1 - 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.editorconfig b/.editorconfig index 7e1b98a8..1eb00c55 100644 --- a/.editorconfig +++ b/.editorconfig @@ -146,7 +146,9 @@ dotnet_diagnostic.CS1587.severity = none dotnet_diagnostic.CS1574.severity = none dotnet_diagnostic.CS0419.severity = none dotnet_diagnostic.CS1723.severity = none -dotnet_diagnostic.CS1711.severity = none + +# XML doc compiler warnings that have been resolved +dotnet_diagnostic.CS1711.severity = error #### Core EditorConfig Options #### diff --git a/src/Microsoft.Kusto.ServiceLayer/Utility/TaskExtensions.cs b/src/Microsoft.Kusto.ServiceLayer/Utility/TaskExtensions.cs index 5f8f5328..a95ed01b 100644 --- a/src/Microsoft.Kusto.ServiceLayer/Utility/TaskExtensions.cs +++ b/src/Microsoft.Kusto.ServiceLayer/Utility/TaskExtensions.cs @@ -117,7 +117,6 @@ namespace Microsoft.Kusto.ServiceLayer.Utility /// /// This will enforce time out to run an async task without returning result /// - /// /// The async task to run /// Time out in milliseconds /// diff --git a/src/Microsoft.SqlTools.ServiceLayer/Utility/TaskExtensions.cs b/src/Microsoft.SqlTools.ServiceLayer/Utility/TaskExtensions.cs index 72016126..4afbba04 100644 --- a/src/Microsoft.SqlTools.ServiceLayer/Utility/TaskExtensions.cs +++ b/src/Microsoft.SqlTools.ServiceLayer/Utility/TaskExtensions.cs @@ -119,7 +119,6 @@ namespace Microsoft.SqlTools.ServiceLayer.Utility /// /// This will enforce time out to run an async task without returning result /// - /// /// The async task to run /// Time out in milliseconds ///