Run StyleCop against iis based web project on buildserver

How to run stylecop against iis based web project on build server? Buildserver works in continuous integration, and I would like it to be automated.

With the library, I can add multiple lines to the .csproj and do it. I believe this is a web application project.

0


source to share


2 answers


Not possible with project type, projects must be converted.



0


source


Is this a web application project or a website in Visual Studio? With the old version, it is compiled into assembly, so you can always run StyleCop from build scripts on build.



Alternatively, you can run StyleCop as a plugin from VisualStudio, but you are probably asking for automation here. I think it all depends on your build process. There are various build configurations, so please clarify what you are actually doing on this build server. Continuous Integration?

0


source







All Articles