14 references to FilePath
Microsoft.CodeAnalysis (3)
CommandLine\CommandLineArguments.cs (3)
466?? (AnalyzerReference)new UnresolvedAnalyzerReference(cmdLineReference.FilePath); 542diagnostics.Add(new DiagnosticInfo(messageProvider, messageProvider.ERR_MetadataFileNotFound, reference.FilePath)); 567string? resolvedPath = FileUtilities.ResolveRelativePath(reference.FilePath, basePath: null, baseDirectory: BaseDirectory, searchPaths: ReferencePaths, fileExists: File.Exists);
Microsoft.CodeAnalysis.LanguageServer (3)
HostWorkspace\LoadedProject.cs (3)
147var absolutePath = FileUtilities.ResolveRelativePath(cr.FilePath, commandLineArguments.BaseDirectory); 155reference => _projectSystemProject.AddAnalyzerReference(reference.FilePath), 156reference => _projectSystemProject.RemoveAnalyzerReference(reference.FilePath),
Microsoft.CodeAnalysis.VisualBasic.CommandLine.UnitTests (5)
CommandLineTests.vb (5)
2563Assert.Equal("goo.dll", parsedArgs.AnalyzerReferences(0).FilePath) 2568Assert.Equal("goo.dll", parsedArgs.AnalyzerReferences(0).FilePath) 2573Assert.Equal("goo.dll", parsedArgs.AnalyzerReferences(0).FilePath) 2578Assert.Equal("goo.dll", parsedArgs.AnalyzerReferences(0).FilePath) 2579Assert.Equal("bar.dll", parsedArgs.AnalyzerReferences(1).FilePath)
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\CommandLineProject.cs (1)
73foreach (var path in commandLineArguments.AnalyzerReferences.Select(r => r.FilePath))
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\MSBuildProjectLoader.Worker.cs (1)
417foreach (var path in commandLineArgs.AnalyzerReferences.Select(r => r.FilePath))
VBCSCompiler (1)
src\Compilers\Server\VBCSCompiler\AnalyzerConsistencyChecker.cs (1)
87string? resolvedPath = FileUtilities.ResolveRelativePath(analyzerReference.FilePath, basePath: null, baseDirectory: baseDirectory, searchPaths: SpecializedCollections.EmptyEnumerable<string>(), fileExists: File.Exists);