1 instantiation of SourceGeneratorProjectItem
Microsoft.CodeAnalysis.Razor.Compiler (1)
SourceGenerators\RazorSourceGenerator.RazorProviders.cs (1)
148var projectItem = new SourceGeneratorProjectItem(
11 references to SourceGeneratorProjectItem
Microsoft.CodeAnalysis.Razor.Compiler (11)
SourceGenerators\RazorSourceGenerator.Helpers.cs (6)
53SourceGeneratorProjectItem item, 54ImmutableArray<SourceGeneratorProjectItem> imports, 59foreach (var import in imports) 108SourceGeneratorProjectItem item, 109ImmutableArray<SourceGeneratorProjectItem> imports, 114foreach (var import in imports)
SourceGenerators\RazorSourceGenerator.RazorProviders.cs (2)
108private static (SourceGeneratorProjectItem?, Diagnostic?) ComputeProjectItems((AdditionalText, AnalyzerConfigOptionsProvider) pair, CancellationToken ct) 148var projectItem = new SourceGeneratorProjectItem(
SourceGenerators\SourceGeneratorProjectItem.cs (3)
12internal class SourceGeneratorProjectItem : RazorProjectItem, IEquatable<SourceGeneratorProjectItem> 61public bool Equals(SourceGeneratorProjectItem? other) 86public override bool Equals(object? obj) => obj is SourceGeneratorProjectItem projectItem && Equals(projectItem);