Tuesday 29 March 2016

visual studio - UsingDirectivesMustBePlacedWithinNamespace enabled false but still showing stylecop error

In my solution StyleCopSettings has a Rule (UsingDirectivesMustBePlacedWithinNamespace) which is disabled but when I build the solution in release mode, I still see stylecop error saying Using directives must be inside the namespace.



  



False




No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...