Setting CLS compliance for an entire .NET assembly is possible. But how is it actually done? E.g. with Visual Studio 2008?

link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

Visual Studio adds a directive for the compiler, and the compiler checks the code for some more strict rules than in the native programming language.

You can add the CLS compliant attribute to all your project by adding the assembly level attribute

[assembly: CLSCompliantAttribute(true)]

anywhere in your project, generally in the assemblyinfo.cs file.

link|improve this answer
feedback

You need to add this line to one of your source files:

[assembly: CLSCompliant(true)]

More info on CLS compliant code here.

link|improve this answer
Where does that line go? Into some particular file? Into all source files that contribute to an assembly? Regards, Peter – Peter Mortensen Apr 21 '09 at 20:14
No particular file. The attribute applies to the entire assembly the source code is compiled into. More details at the link I posted. – Michael Apr 21 '09 at 20:18
2  
Generally you'd put this in your Properties/AssemblyInfo.cs file. – Craig Apr 21 '09 at 20:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.