summaryrefslogtreecommitdiff
path: root/CommandLineWrapper/WorkspaceCommandGenerator/Program.cs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-01-13 08:22:09 +0800
committer魏曹先生 <1992414357@qq.com>2026-01-13 08:22:09 +0800
commit5d8b29664c13e6e5c6292d79973980182ece1441 (patch)
treeced2f67c82ce0748dbd0090f0fde6b921329d259 /CommandLineWrapper/WorkspaceCommandGenerator/Program.cs
parent7d59c15b0efd2aa5a27aef356a265f850a2e7e2f (diff)
Add data loading from wrapper to view modelHEADmain
Diffstat (limited to 'CommandLineWrapper/WorkspaceCommandGenerator/Program.cs')
-rw-r--r--CommandLineWrapper/WorkspaceCommandGenerator/Program.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/CommandLineWrapper/WorkspaceCommandGenerator/Program.cs b/CommandLineWrapper/WorkspaceCommandGenerator/Program.cs
index e0bf373..1840066 100644
--- a/CommandLineWrapper/WorkspaceCommandGenerator/Program.cs
+++ b/CommandLineWrapper/WorkspaceCommandGenerator/Program.cs
@@ -1,7 +1,7 @@
using System.Text;
using System.Text.RegularExpressions;
-namespace CommandLineWrapper.CodeGenerator
+namespace CommandLineWrapper.WorkspaceCommandGenerator
{
class Program
{
@@ -114,7 +114,7 @@ namespace CommandLineWrapper.CodeGenerator
var sb = new StringBuilder();
// Add using statements and namespace
- sb.AppendLine("using static JVCSCommandInvoker;");
+ sb.AppendLine("using static CommandLineWrapper.JVCSCommandInvoker;");
sb.AppendLine();
sb.AppendLine("namespace CommandLineWrapper");
sb.AppendLine("{");