From d42205c1169e93a6ac06e6ac1d35f1d50a565e68 Mon Sep 17 00:00:00 2001 From: tmat Date: Wed, 4 May 2022 16:53:41 -0700 Subject: [PATCH] Rename and cleanup --- ...achingAnalyzerConfigOptions.cs => AnalyzerConfigData.cs} | 6 ------ 1 file changed, 6 deletions(-) rename src/Workspaces/Core/Portable/Workspace/Solution/{CachingAnalyzerConfigOptions.cs => AnalyzerConfigData.cs} (84%) diff --git a/src/Workspaces/Core/Portable/Workspace/Solution/CachingAnalyzerConfigOptions.cs b/src/Workspaces/Core/Portable/Workspace/Solution/AnalyzerConfigData.cs similarity index 84% rename from src/Workspaces/Core/Portable/Workspace/Solution/CachingAnalyzerConfigOptions.cs rename to src/Workspaces/Core/Portable/Workspace/Solution/AnalyzerConfigData.cs index 6baf54fc7ba5b..c417192872bb6 100644 --- a/src/Workspaces/Core/Portable/Workspace/Solution/CachingAnalyzerConfigOptions.cs +++ b/src/Workspaces/Core/Portable/Workspace/Solution/AnalyzerConfigData.cs @@ -2,14 +2,8 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -using System; -using System.Collections.Generic; using System.Collections.Immutable; -using System.Diagnostics.CodeAnalysis; -using System.Text; using Microsoft.CodeAnalysis.Diagnostics; -using Microsoft.CodeAnalysis.Diagnostics.Analyzers.NamingStyles; -using Microsoft.CodeAnalysis.Options; namespace Microsoft.CodeAnalysis;