Would it be possible to improve how Visual Studio Code handles handling of Attribute usage in C# code? My request is divided into two main changes:
FooAttribute class, VSCode produces [FooAttribute]. āFullā Visual Studio on Windows produces just [Foo]. Can we harmonize the two? (This causes not-inconsequential project churn when switching back and forth between IDEs.)AllowMultiple part of [AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple = true)]. Note that the syntax-error-detection parser handles this correctly.I use Attributes heavily and attempting to fight against the current inteliisense/autocorrect from appending of "Attribute" is a huge pain.
I've been hitting this constantly as well... might try to add a PR if work on this has not been ongoing... let me know.
Most helpful comment
I use Attributes heavily and attempting to fight against the current inteliisense/autocorrect from appending of "Attribute" is a huge pain.