Add missing import to C# output

This commit is contained in:
Fabian Stamm
2022-02-13 23:50:45 +00:00
parent b5ca061136
commit 7cc2a27420
2 changed files with 3 additions and 1 deletions

View File

@ -129,6 +129,7 @@ export class CSharpTarget extends CompileTarget<{ csharp_namespace: string }> {
a(0, `using System.Text.Json.Serialization;`);
a(0, `using System.Text.Json.Nodes;`);
a(0, `using System.Threading.Tasks;`);
a(0, `using System.Collections.Generic;`);
a(0, ``);
a(0, `namespace ${this.namespace};`);
a(0, ``);
@ -215,6 +216,7 @@ export class CSharpTarget extends CompileTarget<{ csharp_namespace: string }> {
a(0, `using System.Text.Json.Serialization;`);
a(0, `using System.Text.Json.Nodes;`);
a(0, `using System.Threading.Tasks;`);
a(0, `using System.Collections.Generic;`);
a(0, ``);
a(0, `namespace ${this.namespace};`);
a(0, ``);