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
///