4 overrides of FileKind
Microsoft.AspNetCore.Razor.Test.Common (1)
Language\TestRazorProjectItem.cs (1)
22
public override RazorFileKind
FileKind
=> _fileKind ?? base.FileKind;
Microsoft.CodeAnalysis.Razor.Compiler (3)
Language\DefaultRazorProjectItem.cs (1)
67
public override RazorFileKind
FileKind
=> _fileKind ?? base.FileKind;
Language\NotFoundProjectItem.cs (1)
24
public override RazorFileKind
FileKind
{ get; }
SourceGenerators\SourceGeneratorProjectItem.cs (1)
51
public override RazorFileKind
FileKind
=> _fileKind;
8 references to FileKind
Microsoft.AspNetCore.Razor.Test.Common (1)
Language\TestRazorProjectItem.cs (1)
22
public override RazorFileKind FileKind => _fileKind ?? base.
FileKind
;
Microsoft.CodeAnalysis.Razor.Compiler (7)
Language\Components\ComponentImportProjectFeature.cs (1)
27
if (!projectItem.
FileKind
.IsComponent())
Language\DefaultRazorProjectItem.cs (1)
67
public override RazorFileKind FileKind => _fileKind ?? base.
FileKind
;
Language\RazorProjectEngine.cs (2)
174
source, projectItem.
FileKind
, importSources, tagHelpers: null, cssScope: projectItem.CssScope, configureParser, configureCodeGeneration);
202
return CreateCodeDocumentDesignTimeCore(source, projectItem.
FileKind
, importSources, tagHelpers: null, configureParser, configureCodeGeneration);
Mvc.Version1_X\MvcImportProjectFeature.cs (1)
35
if (projectItem.
FileKind
.IsComponent())
Mvc.Version2_X\MvcImportProjectFeature.cs (1)
37
if (projectItem.
FileKind
.IsComponent())
Mvc\MvcImportProjectFeature.cs (1)
37
if (projectItem.
FileKind
.IsComponent())