hadashiA / VContainer

The extra fast, minimum code size, GC-free DI (Dependency Injection) library running on Unity Game Engine.
https://vcontainer.hadashikick.jp
MIT License
1.81k stars 157 forks source link

Fix InjectIgnore not being ignored #649

Closed octo127 closed 3 months ago

octo127 commented 3 months ago

According to the document, the [InjectIgnore] attribute can be used to exclude a target from code generation by SourceGenerator, but it does not appear to be actually excluded. It appears that this was due to the fact that "Attribute" was not appended to the end when validating attributes in the VContainerIncrementalSourceGenerator, so fixed it.

vercel[bot] commented 3 months ago

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
vcontainer ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 24, 2024 0:34am
hadashiA commented 3 months ago

Thanks!