4 overrides of GetItem
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)
rzc (1)
CompositeRazorProjectFileSystem.cs (1)
30public override RazorProjectItem GetItem(string path, RazorFileKind? fileKind)
4 references to GetItem
Microsoft.CodeAnalysis.Razor.Compiler (2)
Language\RazorProjectFileSystem.cs (2)
37=> GetItem(path, fileKind: null); 137var item = GetItem(itemPath, fileKind: null);
rzc (2)
CompositeRazorProjectFileSystem.cs (1)
35razorProjectItem = fileSystem.GetItem(path, fileKind);
GenerateCommand.cs (1)
379var codeDocument = engine.Process(engine.FileSystem.GetItem(inputItem.FilePath, inputItem.FileKind));