From 1a094c95c747c58942906971638dd17230a9ac37 Mon Sep 17 00:00:00 2001 From: xtqqczze Date: Sun, 29 Nov 2020 12:10:20 +0000 Subject: [PATCH 1/2] Fix IDE0005: Remove unnecessary import `src\Microsoft.WSMan.Runtime\` https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005 --- src/Microsoft.WSMan.Runtime/WSManSessionOption.cs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/Microsoft.WSMan.Runtime/WSManSessionOption.cs b/src/Microsoft.WSMan.Runtime/WSManSessionOption.cs index 79f0c0045e1..69c342e9095 100644 --- a/src/Microsoft.WSMan.Runtime/WSManSessionOption.cs +++ b/src/Microsoft.WSMan.Runtime/WSManSessionOption.cs @@ -2,19 +2,8 @@ // Licensed under the MIT License. using System; -using System.ComponentModel; -using System.IO; using System.Net; -using System.Reflection; -using System.Resources; -using System.Xml; - -using System.Collections; -using System.Collections.Generic; - -using System.Runtime.InteropServices; using System.Diagnostics.CodeAnalysis; -using System.Runtime.CompilerServices; [assembly: CLSCompliant(true)] From 56d6c853cf9d64159ce203b593d8b2b3af033471 Mon Sep 17 00:00:00 2001 From: xtqqczze Date: Sun, 29 Nov 2020 12:10:56 +0000 Subject: [PATCH 2/2] Sort usings --- src/Microsoft.WSMan.Runtime/WSManSessionOption.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.WSMan.Runtime/WSManSessionOption.cs b/src/Microsoft.WSMan.Runtime/WSManSessionOption.cs index 69c342e9095..13dc8bbea2c 100644 --- a/src/Microsoft.WSMan.Runtime/WSManSessionOption.cs +++ b/src/Microsoft.WSMan.Runtime/WSManSessionOption.cs @@ -2,8 +2,8 @@ // Licensed under the MIT License. using System; -using System.Net; using System.Diagnostics.CodeAnalysis; +using System.Net; [assembly: CLSCompliant(true)]