We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c049fb5 commit 0412772Copy full SHA for 0412772
ElementFactoryGenerator/ElementFactory.cs
@@ -9,8 +9,6 @@
9
[Generator]
10
public class ElementFactoryGenerator : IIncrementalGenerator
11
{
12
- public static StringBuilder ToplevelDebugBuilder = new();
13
-
14
public void Initialize(IncrementalGeneratorInitializationContext context)
15
16
var provider = context.SyntaxProvider.CreateSyntaxProvider(
@@ -160,7 +158,6 @@ public class ElementFactory : Datamodel.Codecs.IElementFactory
160
158
};
161
159
"""");
162
163
- context.AddSource("debugoutput.g.cs", ToplevelDebugBuilder.ToString());
164
context.AddSource("ElementFactory.g.cs", elementFactory.ToString());
165
}
166
0 commit comments