Skip to content

Commit

Permalink
Fix InjectIgnore not being ignored
Browse files Browse the repository at this point in the history
  • Loading branch information
octo127 committed Mar 24, 2024
1 parent 3eff392 commit 8c93356
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void Initialize(IncrementalGeneratorInitializationContext context)
var attributeName = attributeSymbol.ContainingType.ToDisplayString();

// Ignore
if (attributeName == "VContainer.InjectIgnore")
if (attributeName == "VContainer.InjectIgnoreAttribute")
return null;
}
}
Expand Down

0 comments on commit 8c93356

Please sign in to comment.