4 overrides of GetItem
Microsoft.AspNetCore.Razor.Language.UnitTests (1)
RazorProjectFileSystemTest.cs (1)
325public override RazorProjectItem GetItem(string path, RazorFileKind? fileKind)
Microsoft.CodeAnalysis.Razor.Compiler (3)
Language\DefaultRazorProjectFileSystem.cs (1)
61public override RazorProjectItem GetItem(string path, RazorFileKind? fileKind)
Language\RazorProjectFileSystem.EmptyFileSystem.cs (1)
18public override RazorProjectItem GetItem(string path, RazorFileKind? fileKind)
Language\VirtualRazorProjectFileSystem.cs (1)
21public override RazorProjectItem GetItem(string path, RazorFileKind? fileKind)
4 references to GetItem
Microsoft.AspNetCore.Razor.Microbenchmarks.Compiler (2)
CodeGenerationBenchmark.cs (1)
29MSN = fileSystem.GetItem(Path.Combine(root.FullName, "MSN.cshtml"), RazorFileKind.Legacy);
SyntaxTreeGenerationBenckmark.cs (1)
31var projectItem = fileSystem.GetItem(Path.Combine(root.FullName, "MSN.cshtml"), RazorFileKind.Legacy);
Microsoft.CodeAnalysis.Razor.Compiler (2)
Language\RazorProjectFileSystem.cs (2)
37=> GetItem(path, fileKind: null); 137var item = GetItem(itemPath, fileKind: null);