My first thought is that is would be bad practice to list each dll individually. I want to avoid having to edit my TC configuration every time someone creates a new project/dll.
Although with the traditional directory structure I can't find any sensible wildcard pattern.
Directory structure
- Solution
- Container
- bin
- Debug
- bin
- Core
- bin
- Debug
- bin
- Web
- bin
- Debug
- bin
- ...
- Container
Any wildcard pattern (like **\bin\**.dll
) will match the same DLLs multiple times.
How do you guys specify what assemblies to inspect with FxCop in TeamCity?