1 write to Generator
Microsoft.CodeAnalysis.Workspaces (1)
Workspace\Solution\SourceGeneratedDocumentIdentity.cs (1)
32Generator = generator;
10 references to Generator
Microsoft.CodeAnalysis.Workspaces (10)
Log\WorkspaceStructureLogger.cs (4)
206new XAttribute("generatorType", identity.Generator.TypeName), 207new XAttribute("generatorAssembly", identity.Generator.AssemblyName), 208new XAttribute("generatorAssemblyVersion", identity.Generator.AssemblyVersion.ToString()), 209new XAttribute("generatorAssemblyPath", SanitizePath(identity.Generator.AssemblyPath)));
src\roslyn\src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\DocumentExtensions.cs (1)
102return document is SourceGeneratedDocument { Identity.Generator.TypeName: RazorSourceGeneratorTypeName };
Workspace\Solution\SolutionCompilationState.RegularCompilationTracker_Generators.cs (1)
436if (state.Identity.Generator != generatorIdentity)
Workspace\Solution\SourceGeneratedDocumentIdentity.cs (4)
80writer.WriteString(Generator.AssemblyName); 81writer.WriteString(Generator.AssemblyPath); 82writer.WriteString(Generator.AssemblyVersion.ToString()); 83writer.WriteString(Generator.TypeName);