Browse Source

But it works on my machine!

CPKreuz 2 years ago
parent
commit
65a5529e19
1 changed files with 0 additions and 6 deletions
  1. 0 6
      src/PixiEditorGen/CommandNameListGenerator.cs

+ 0 - 6
src/PixiEditorGen/CommandNameListGenerator.cs

@@ -115,8 +115,6 @@ public class CommandNameListGenerator : IIncrementalGenerator
             .NamespaceDeclaration(SyntaxFactory.ParseName("PixiEditor.Models.Commands"))
             .AddMembers(cDecl);
 
-        File.WriteAllText(@"C:\Users\phili\Documents\Cmds.txt", nspace.NormalizeWhitespace().ToFullString());
-
         context.AddSource("CommandNameList+Commands", nspace.NormalizeWhitespace().ToFullString());
     }
 
@@ -159,8 +157,6 @@ public class CommandNameListGenerator : IIncrementalGenerator
             .NamespaceDeclaration(SyntaxFactory.ParseName("PixiEditor.Models.Commands"))
             .AddMembers(cDecl);
 
-        File.WriteAllText(@"C:\Users\phili\Documents\Evals.txt", nspace.NormalizeWhitespace().ToFullString());
-
         context.AddSource("CommandNameList+Evaluators", nspace.NormalizeWhitespace().ToFullString());
     }
 
@@ -187,8 +183,6 @@ public class CommandNameListGenerator : IIncrementalGenerator
             .NamespaceDeclaration(SyntaxFactory.ParseName("PixiEditor.Models.Commands"))
             .AddMembers(cDecl);
 
-        File.WriteAllText(@"C:\Users\phili\Documents\Groups.txt", nspace.NormalizeWhitespace().ToFullString());
-
         context.AddSource("CommandNameList+Groups", nspace.NormalizeWhitespace().ToFullString());
     }