Skip to content

Commit

Permalink
Merge pull request #649 from octo127/bugfix/inject-ignore
Browse files Browse the repository at this point in the history
Fix InjectIgnore not being ignored
  • Loading branch information
hadashiA authored Mar 25, 2024
2 parents 3eff392 + 8c93356 commit d64a49a
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 d64a49a

Please sign in to comment.