I have a .NET 3.5 C # project that has a namespace SampleNamespace.Tools.Sample.
If I add an assembly called "Samplenamespace.Utils.Example" to my project, I get the following warning:
Samplenamespace identifier that differs only in that it does not match the CLS
Note the lowercase "n" in Samplenamespace.
At the moment, I do not even use the link in my project. Just adding it as a link will give you a warning.
Why does the compiler complain about this, given that I don’t even show assembly links in my public classes?
Any workaround?
source
share