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