Does anyone need a VS2010 Custom Build Activity for StyleCop?
There is a noticeable omission form the tooling for StyleCop that you cannot integrate it into a TFS 2010 Build directly. There is a custom task to do it as part of MSBuild Extension pack, but this is designed for TFS 2008. So when I had to wire in StyleCop to our 2010 build process I hit a problem, I could Edit the .csproj files for each project to wire in StyleCop Use an MSBuild activity in my 2010 build Write my own custom activity. I decided to follow the final option, it did not look too bad as the source needed is provided in the StyleCop SDK. Well after a good deal of fiddling I have it basically working. Again I found the process of developing a custom activity a little irritating. ...