WiseTechGlobal / WTG.Analyzers

Analyzers from WiseTech Global to enforce our styles, behaviours, and prevent common mistakes.
Other
16 stars 3 forks source link

Analyzer to warn against thread-local storage #152

Open yaakov-h opened 3 years ago

yaakov-h commented 3 years ago

We should flag uses of ThreadStaticAttribute and System.Threading.ThreadLocal<T>.

Developers should be encouraged to find more suitable means of passing data around, and to use AsyncLocal<T> only if strictly necessary.