Renaming csharp_namespace

This commit is contained in:
K35
2022-01-10 14:15:06 +00:00
parent 8419ecdd09
commit 6236a14377
4 changed files with 5 additions and 5 deletions

View File

@ -21,11 +21,11 @@ function toCSharpType(type: string): string {
return (conversion as any)[type] || type;
}
export class CSharpTarget extends CompileTarget<{ CSharp_Namespace: string }> {
export class CSharpTarget extends CompileTarget<{ csharp_namespace: string }> {
name: string = "c#";
get namespace() {
return this.options.CSharp_Namespace || "JRPC";
return this.options.csharp_namespace || "JRPC";
}
start(): void {