I would like to have StyleCop rules apply on a specific namespace (all classes from this namespace are in the same folder).
My project structure looks like this:
- Folder1
- Class1.cs
- Class2.cs
- Settings.StyleCop (namespace settings)
- Class3.cs
- Class4.cs
- Settings.StyleCop (general settings)
The general settings are correctly applied to all files (including the ones in the subfolder), but the namespace settings are completely ignored.
I haven't used StyleCop in a while, but I thought this was possible. Am I doing something wrong?
How can I make this work?