Setting CLS compliance for an entire .NET assembly is possible. But how is it actually done? E.g. with Visual Studio 2008?
|
feedback
|
|
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
anywhere in your project, generally in the | ||||
|
feedback
|
|
You need to add this line to one of your source files:
More info on CLS compliant code here. | |||||||||
feedback
|