Skip to content

Commit a8a4d8c

Browse files
Merge pull request #74735 from CyrusNajmabadi/renameFile
2 parents 693198d + e12112e commit a8a4d8c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/Workspaces/Core/Portable/Workspace/ProjectSystem/VisualStudioAnalyzer.cs renamed to src/Workspaces/Core/Portable/Workspace/ProjectSystem/ProjectAnalyzerReference.cs

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,18 @@
44

55
using System;
66
using System.Collections.Immutable;
7-
using System.IO;
87
using Microsoft.CodeAnalysis.Diagnostics;
98

109
namespace Microsoft.CodeAnalysis.Workspaces.ProjectSystem;
1110

1211
// TODO: Remove. This is only needed to support Solution Explorer Analyzer node population.
1312
// Analyzers should not be loaded in devenv process (see https://github.com/dotnet/roslyn/issues/43008).
14-
internal sealed class ProjectAnalyzerReference(string fullPath, IAnalyzerAssemblyLoader loader, IProjectSystemDiagnosticSource projectSystemDiagnosticSource, ProjectId projectId, string language) : IDisposable
13+
internal sealed class ProjectAnalyzerReference(
14+
string fullPath,
15+
IAnalyzerAssemblyLoader loader,
16+
IProjectSystemDiagnosticSource projectSystemDiagnosticSource,
17+
ProjectId projectId,
18+
string language) : IDisposable
1519
{
1620
// these 2 are mutable states that must be guarded under the _gate.
1721
private readonly object _gate = new();

0 commit comments

Comments
 (0)