Koblin
Koblin

Reputation: 3

Where are the explanations to warnings of VS 2005 Code Analyses tool?

Does anyone know where to find an explanation to the warnings in VS 2005 Code Analyses tool. I would like some documentation, explaining why it creates the warnings it does and what course of action one should take.

Upvotes: 0

Views: 502

Answers (2)

Matt Lacey
Matt Lacey

Reputation: 65586

I'm not sure which codeanalysis tool you are referring to.

If you mean FxCop, look here: http://msdn.microsoft.com/en-us/library/bb429379(VS.80).aspx

If you mean StyleCop, see the download here: http://code.msdn.microsoft.com/sourceanalysis/Release/ProjectReleases.aspx?ReleaseId=1425

Upvotes: 0

bdukes
bdukes

Reputation: 156055

You should be able to right click the warnings it gives you in the Error List and view Error Help, right from within Visual Studio. There's also a section of MSDN articles, if you'd prefer.

Upvotes: 1

Related Questions