Skip to content

Commit eb80454

Browse files
committed
fix: don't add M31.FluentApi.Attributes using to generated code file
1 parent ba53468 commit eb80454

File tree

1 file changed

+5
-0
lines changed
  • src/M31.FluentApi.Generator/CodeGeneration/CodeBoardElements

1 file changed

+5
-0
lines changed

src/M31.FluentApi.Generator/CodeGeneration/CodeBoardElements/CodeBoard.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,11 @@ internal static CodeBoard Create(
9595

9696
foreach (string usingStatement in usingStatements)
9797
{
98+
if (usingStatement == "using M31.FluentApi.Attributes;")
99+
{
100+
continue;
101+
}
102+
98103
codeFile.AddUsingStatement(usingStatement);
99104
}
100105

0 commit comments

Comments
 (0)