Skip to content

Latest commit

 

History

History
35 lines (32 loc) · 974 Bytes

README.md

File metadata and controls

35 lines (32 loc) · 974 Bytes

HarmonicGenerator

GitHub Nuget Nuget

Integrate the C# Source Generator with other source generators.

Architecture

sequenceDiagram
  participant Build as dotnet Build
  participant Inner as Internal Build
  participant Other as Other Generator
  autonumber
  Build->>Inner: Invoke Build
  activate Inner
  loop 1st Generate
    Inner->Inner: dotnet SourceGenerator
  end
  Inner->>Other: Invoke Generator
  deactivate Inner
  activate Other
  loop
    Other->Other: Generate Source
  end
  Other->>Inner: End
  deactivate Other
  Inner->>Build: Build End
  activate Build
  loop 2nd Generate
    Build->Build: dotnet SourceGenerator
  end
  deactivate Build
Loading