10using Microsoft.CodeAnalysis.CSharp.Syntax;
12using System.Collections.Generic;
13using System.Diagnostics;
31 public void Initialize(GeneratorInitializationContext context)
48 public void Execute(GeneratorExecutionContext context)
50 SerializationPartialGenerator generator;
59 generator =
new SerializationPartialGenerator();
60 generator.GeneratePartialType(context, typeDefinition);
66 context.ReportDiagnostic(ex.ToUsageDiagnostic());
Determine the types for which we must perform source generation
Source Generator for generating partial classes to complete decorated types that must offer automated...
void Initialize(GeneratorInitializationContext context)
Initialise the generator prior to performing any work
void Execute(GeneratorExecutionContext context)
Called by Roslyn to request that the generator perform any required work