Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Someone on our team installed StyleCop and since then all of the projects he loaded up and committed to source control refuse to load unless stylecop is installed.

I know I can manually edit the .csproj files to get rid of it, but is there an easy way to automatically remove these stylecop parts from the project files so they can be loaded and built on a non-stylecop-infected Visual Studio machine?

share|improve this question
Have you removed all references to the StyleCop assemblies in your projects? You can remove these references through Visual Studio. – Bernard Dec 9 '10 at 14:08
I recommend that you still make use of StyleCop, it does add value, but perhaps you should use it externally so that you need not make any changes to your existing projects. – Bernard Dec 9 '10 at 14:10
I thought StyleCop was a tool for Visual Studio that allowed you to highlight rules that have been broken in your source code via the IDE, why would you need to add a reference to it from your project? I've been using StyleCop for a while now and not seen it add anything to my project or source files. – Piers Myers Jan 28 '11 at 21:11
@Piers: The rules are not necessarily highlighted in the IDE. If you insert two lines in each .csproj file and put the StyleCop dlls in your project folder, violated rules cause errors when you compile...no matter if you compile in Visual Studio or with MSBuild, and no need to install it on every developer machine. – Christian Specht Feb 4 '11 at 0:56
1  
I came to this question because when I removed StyleCop and whenever I loaded VS or projects it gave me a warning that the package didn't load correctly. I couldn't find an answer anywhere but I solved it using devenv /Setup & devenv /ResetSettings. Hope it helps someone. – Ken Jan 30 at 15:43
show 2 more comments

2 Answers

up vote 4 down vote accepted

Stylecop hides real warnings. Its a vanity exercise and its evil.

Do not use it.

share|improve this answer
1  
How does it hide real warnings? – Ken Jan 30 at 15:13
1  
It hides real warnings because some developers look and say 'look no style cop issues!' despite writing terrible, unmaintainable spaghetti code. – Carl Sixsmith Feb 21 at 14:49
2  
Every tool has to be used with according to its purpose. Stylecop does not say your code is OK, it says, that its formatting is consistent with the set of rules. Same as automatic merge in any VCS (svn/git) never says you have your code sonsistent after the merge: it just says, that all the changes have been merged together according to the merge rules. However it is you responsibility to ensure the code is consistent (e.g. everyting compiles and unit tests pass). – Isantipov Mar 15 at 15:12

Why remove it?
In my opinion using StyleCop is a good thing.
Your only problem seems to be that your team member didn't set up StyleCop properly.

From your description, I guess that he wanted to set up StyleCop with MSBuild integration: http://blogs.msdn.com/b/sourceanalysis/archive/2008/05/24/source-analysis-msbuild-integration.aspx

He apparently just left out the last paragraph "Team Development": copy the StyleCop files into your project and check them into source control, so you don't need to install StyleCop on every single developer machine. (see my link for a more detailed description)

If you do this, StyleCop should work on every machine, no matter if it's installed or not.

We are using StyleCop in this way as well, and I think it's the easiest way to use it.
I just had to insert two lines into each .csproj file and check a few files into source control once...and StyleCop just works, on every compile, on every machine (no matter if it's on a developer machine or the build server).

share|improve this answer
6  
Stylecop is not a good thing. We don;t always have control over the code we work with - in particular the 'core' code we have is written by a different team in another country and .. lets say the default stylecop options create only a few thousand violations. and they don't have a consistent system, so we either live with those warnings or get rid of it in our code and just go back to the old fashioned way of making our code look nice without any 'help'. – gbjbaanb Feb 4 '11 at 9:50
which leave me with the problem of getting rid of thsoe 2 csproj lines - as once in, they error if you don't have stylecop installed. (or an older version of stylecop - so if the build server has v1 and someone upgrades their local copy, the build server starts to error. PiTA) – gbjbaanb Feb 4 '11 at 9:52
6  
You can disable certain rules in StyleCop. And you can enable StyleCop only for certain projects. So if the code from the other team violates too many rules, you can just disable Stylecop for their code and keep it enabled for yours. – Christian Specht Feb 4 '11 at 11:59
3  
Concerning "they error if you don't have stylecop installed": They don't if you put the StyleCop files in your project and check them into source control. Take a look at the link in my answer, it has a detailed description of that (in the last paragraph "Team Development"). – Christian Specht Feb 4 '11 at 12:03
check the stylecop binaries into SCM and (I assume) get them out everytime you build?! You might as well install it everywhere rather than manage the dependancy. That link doesn't really provide a good answer. I'd still ratehr get rid of it - we are an agile shop so I'd prefer communication to solve this kind of problem rather than impose a rigid tool that breaks the build. – gbjbaanb Feb 9 '11 at 16:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.