Version Used:
Microsoft.CodeAnalysis.CSharp.Workspaces 3.6.0-3.final
I'm trying to write an analyzer that is checking that rules introduced by Source Generator are followed. I'm registering for context.RegisterSemanticModelAction(Action);. How can I get a semantic model WITH generated source code already applied?
Version Used: Microsoft.CodeAnalysis.CSharp.Workspaces 3.6.0-3.final
I'm trying to write an analyzer that is checking that rules introduced by Source Generator are followed. I'm registering for
context.RegisterSemanticModelAction(Action);
. How can I get a semantic model WITH generated source code already applied?