Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Commit 9a85b06

Browse files
committed
fix namespace error
1 parent ef0b7a7 commit 9a85b06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PlasticCommand/Generator/CommandGenerators/CommandGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public CommandGenerator(
5050
commandBuilder.Replace("{{ Comment }}", comment);
5151
commandBuilder.Replace("TTFFGeneratedCommandInterface", commandInterfaceName);
5252

53-
this.Context.AddSource($"{commandName}.cs", commandBuilder.ToString());
53+
this.Context.AddSource($"{@namespace}.{commandName}.cs", commandBuilder.ToString());
5454

5555
return new GeneratedCommandInfo(
5656
@namespace + "." + commandName,

0 commit comments

Comments
 (0)