6 references to FilePath
Microsoft.CodeAnalysis (3)
CommandLine\CommandLineArguments.cs (3)
477
?? (AnalyzerReference)new UnresolvedAnalyzerReference(cmdLineReference.
FilePath
);
553
diagnostics.Add(new DiagnosticInfo(messageProvider, messageProvider.ERR_MetadataFileNotFound, reference.
FilePath
));
578
string? resolvedPath = FileUtilities.ResolveRelativePath(reference.
FilePath
, basePath: null, baseDirectory: BaseDirectory, searchPaths: ReferencePaths, fileExists: File.Exists);
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\CommandLineProject.cs (1)
73
foreach (var path in commandLineArguments.AnalyzerReferences.Select(r => r.
FilePath
))
Microsoft.CodeAnalysis.Workspaces.MSBuild (1)
MSBuild\MSBuildProjectLoader.Worker.cs (1)
328
foreach (var path in commandLineArgs.AnalyzerReferences.Select(r => r.
FilePath
))
VBCSCompiler (1)
src\roslyn\src\Compilers\Server\VBCSCompiler\AnalyzerConsistencyChecker.cs (1)
88
string? resolvedPath = FileUtilities.ResolveRelativePath(analyzerReference.
FilePath
, basePath: null, baseDirectory: baseDirectory, searchPaths: SpecializedCollections.EmptyEnumerable<string>(), fileExists: File.Exists);