Leading Question
Is it possible to use ISourceGenerator with CSharpCompilation.Create(...)?
Background
I've created a Roslyn SourceGenerator based on ISourceGenerator. This generator creates some partial classes with code that I don't want to write myself and can be generated from attributes and stuff. It works well in VisualStudio.
I've also created another programm that generates C# code and uses CSharpCompilation.Create(...) to compile it in memory.
Now I want to combine the two, so the later programm can skip the parts that the SourceGenerator will generate while compiling the code.
I know SourceGenerators are not stable, so is this use case already implemented?
I tryed to use MetadataReference.CreateFromFile(typeof(MyGenerator).Assembly.Location) and feed it to CSharpCompilation.Create(references: x) but it didn't work =/
I know for Analyzers there is an extension method WithAnalyzers, but Analyzers work differently...