I have a .NET 3.5 C# project that has a namespace of "SampleNamespace.Tools.Sample"
If i add an assmebly called "Samplenamespace.Utils.Example" to my project i get the following warning.
"Identifier 'Samplenamespace' differing only in case is not CLS-compliant"
Note the lower case 'n' in Samplenamespace.
I'm not even using the refernece assmebly in my project at the moment. Simply adding it as a reference causes the warning.
Why is the complier complaing about this considering i'm not even exposing any references to the assmebly in my public classes.
Any workaround?