How do I find all the non CLS-compliant statements in my .NET code?
Can Visual Studio 2015 compiler do it? How do I find non CLS-compliant warnings?
I've checked StyleCop ReSharper extension and ndepend without success.
What I am after is to find all the non CLS-compliant statements in my C# code Visual Studio project. The final goal is to add the [assembly: CLSCompliant(true)]
tag to it.
Thanks.