Skip to content

Commit 0dbbad7

Browse files
Merge pull request #83 from SocksM/model-generator/bugfix/namespace-option-not-being-assigned
Model Generator: bug fix, namespace option not being assigned
2 parents 40dc261 + effdd2c commit 0dbbad7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NetCoreForce.ModelGenerator/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ static void Main(string[] args)
182182
config.ClassSuffix = suffixOption.Value();
183183
}
184184

185-
if (suffixOption.HasValue())
185+
if (namespaceName.HasValue())
186186
{
187187
config.ClassNamespace = namespaceName.Value();
188188
}

0 commit comments

Comments
 (0)