SlideShare una empresa de Scribd logo
1 de 34
StyleCop
Breaking down the barriers to entry

Gary Ewan Park
gep13@gep13.co.uk
Twitter: @gep13
Blog: http://www.gep13.co.uk/blog
Agenda
•
•
•
•
•
•
•
•

What is StyleCop?
Visual Studio Integration
MSBuild Integration
Using a Custom Task
StyleCop Compliance
Extending StyleCop
Working with “Legacy” Applications
Additional Tooling Support
Source Code

http://gep13.me/StyleCopDemos
What is StyleCop?
A Definition…
“StyleCop is an open source static code analysis tool
from Microsoft that checks C# code for conformance to
StyleCop's recommended coding styles and a subset of
Microsoft's .NET Framework Design Guidelines. StyleCop
analyzes the source code, allowing it to enforce a different set
of rules from FxCop.” *
Reference
 http://stylecop.codeplex.com/

* http://en.wikipedia.org/wiki/StyleCop
What does that mean?
• StyleCop is a “plugin” for Visual Studio 2008, 2010, and VS
11 Preview (and in a way, 2005* and Express)
• It provides 162 rules over 7 categories of “style”

* http://gep13.me/ie1T0V
Visual Studio
Integration
Visual Studio Integration
Demo 1

Visual Studio Integration
Using StyleCop on a New Project
MSBuild Integration
This gets installed by default…
During the installation
you have the option
to install MSBuild files.
These files will be
required if you want to
integrate StyleCop
analysis with the Visual
Studio build process or
a Continuous
Integration Server.
MSBuild Integration – Visual Studio
To add StyleCop as part of the “Build” process in Visual Studio
follow these steps:
1. Use the StyleCop.MSBuild Nuget package to install the
necessary files and make file edits.
2. This edits the project file to include:

3. Add the following property in the project file to force all
warnings to be treated as errors:
Demo 2

MSBuild Integration
Including StyleCop Analysis as part of the
Build Process
Using a Custom
Task
MSBuild Integration – Custom Task
• StyleCop also includes a MSBuild task that can be used to
create a custom build step

• Manning Publications – Continuous Integration in .NET
• http://gep13.me/MuNEL9
Demo 3

Using a Custom Task
Running StyleCop Analysis as a custom task
with MSBuild and TeamCity
StyleCop
Compliance
Visual Studio Templates
During the installation
you have the option to
install a new set of
Visual Studio
Templates, which will
already by StyleCop
“compliant”
Going further with more templates…
• Use StyleCop compliant code snippets
• http://vssnippets.codeplex.com/
• Use StyleCop compliant project/item templates
• http://vstemplates.codeplex.com/
Talk to your Team
• Get Buy-In from your Team Members
• Only enable the StyleCop rules that you want to
follow
• Have a team meeting to decide
Demo 4

StyleCop Compliance
Using StyleCop Compliant Project/Item
Templates and Code Snippets
Extending StyleCop
Add More StyleCop Rules
• There are a number of projects that are extending the builtin StyleCop rules:
 StyleCop+
o http://stylecopplus.codeplex.com/
 JSL StyleCop
o http://jslstylecop.codeplex.com/
Create your own Custom StyleCop Rule
1.
2.
3.
4.

5.
6.

Create a .Net Framework 3.5 Class Library Project in
Visual Studio
Add a reference to StyleCop.dll and StyleCop.Csharp.dll
Create your analyzer class that inherits from
SourceAnalyzer
Add an XML file with the same name as the analyzer
class. Set the properties of the XML file to be an
Embedded Resource and not copy to the output directory
Override the AnalyzeDocument method
You are ready to write your own analysis code

• http://gep13.me/JIn0xL
StyleCop Contrib
This CodePlex Project started out life as another Custom
StyleCop Rule Library, however, now it is a Unit Testing
Framework for Custom StyleCop Rules

http://stylecopcontrib.codeplex.com
Allows you to quickly begin testing your Rules, without the
need to debug multiple instances of Visual Studio
Demo 5

Extending StyleCop
Create a Custom StyleCop Rule and then test
it with Unit Tests
Working with
“Legacy”
Applications
Using StyleCop in an Existing Project
• Turn off analysis for
generated code
• Surround code in a
region with the text „generated code‟ within the title
• Turn off StyleCop Analysis for a particular file using
SourceFileList in Settings.StyleCop file
• Turn off StyleCop Analysis for an entire project using
Settings.StyleCop file
Demo 6

Working with “Legacy” Applications
Turning StyleCop off for an existing large
project using Settings file
Additional Tooling
Support
Refactoring StyleCop Rules
• There are plugins available for both CodeRush and
ReSharper to help refactor code to be StyleCop Compliant
• StyleCop For ReSharper
 Now included as part of the core StyleCop installation
 Automatically fixes 128 StyleCop issues during
ReSharper “CleanUp Code…”
• Style Ninja for CodeRush
 http://code.google.com/p/dxcorecommunityplugins/wiki/
CR_StyleNinja
 Fixes 23 StyleCop Issues
ReSharper Integration
During the installation
you have the option
to install ReSharper
Integration files, these
will be required if you
want to be able to
analyse and correct
StyleCop warnings
using ReSharper
Refactorings.
Demo 7

Additional Tooling Support
Using ReSharper to improve StyleCop
Compliance
Questions?

Feel free to email me any additional
questions at
gep13@gep13.co.uk

Más contenido relacionado

La actualidad más candente

Introduction to testlink
Introduction to testlinkIntroduction to testlink
Introduction to testlink
Sumara Khan
 

La actualidad más candente (20)

Develop Maintainable Apps - edUiConf
Develop Maintainable Apps - edUiConfDevelop Maintainable Apps - edUiConf
Develop Maintainable Apps - edUiConf
 
Testlink Test Management with Teamforge
Testlink Test Management with TeamforgeTestlink Test Management with Teamforge
Testlink Test Management with Teamforge
 
Introduction to testlink
Introduction to testlinkIntroduction to testlink
Introduction to testlink
 
Automated Testing Environment by Bugzilla, Testopia and Jenkins
Automated Testing Environment by Bugzilla, Testopia and JenkinsAutomated Testing Environment by Bugzilla, Testopia and Jenkins
Automated Testing Environment by Bugzilla, Testopia and Jenkins
 
Create Drupal patches with Aptana
Create Drupal patches with AptanaCreate Drupal patches with Aptana
Create Drupal patches with Aptana
 
Unit & integration testing
Unit & integration testingUnit & integration testing
Unit & integration testing
 
ATAGTR2017 Machine Learning telepathy for Shift Right approach of testing
ATAGTR2017 Machine Learning telepathy for Shift Right approach of testingATAGTR2017 Machine Learning telepathy for Shift Right approach of testing
ATAGTR2017 Machine Learning telepathy for Shift Right approach of testing
 
Btd presentation-2011
Btd presentation-2011Btd presentation-2011
Btd presentation-2011
 
Continuous delivery
Continuous deliveryContinuous delivery
Continuous delivery
 
HKG15-411: Browser Testing Framework for LHG
HKG15-411: Browser Testing Framework for LHGHKG15-411: Browser Testing Framework for LHG
HKG15-411: Browser Testing Framework for LHG
 
Utility of Test Coverage Metrics in TDD
Utility of Test Coverage Metrics in TDDUtility of Test Coverage Metrics in TDD
Utility of Test Coverage Metrics in TDD
 
Unit testing in Force.com platform
Unit testing in Force.com platformUnit testing in Force.com platform
Unit testing in Force.com platform
 
TestLink introduction
TestLink introductionTestLink introduction
TestLink introduction
 
vREST Test Automation
vREST Test AutomationvREST Test Automation
vREST Test Automation
 
SpecFlow for Agile Teams
SpecFlow for Agile TeamsSpecFlow for Agile Teams
SpecFlow for Agile Teams
 
Test Presentation
Test PresentationTest Presentation
Test Presentation
 
Keyword Driven Testing using TestComplete
Keyword Driven Testing using TestCompleteKeyword Driven Testing using TestComplete
Keyword Driven Testing using TestComplete
 
Defect life cycle and Defect Status Life Cycle
Defect life cycle and Defect Status Life CycleDefect life cycle and Defect Status Life Cycle
Defect life cycle and Defect Status Life Cycle
 
Introduction to Continuous integration
Introduction to Continuous integrationIntroduction to Continuous integration
Introduction to Continuous integration
 
Android tdd
Android tddAndroid tdd
Android tdd
 

Similar a StyleCop breaking down the barriers to entry

Build your android app with gradle
Build your android app with gradleBuild your android app with gradle
Build your android app with gradle
Swain Loda
 
Codingstandards matiar
Codingstandards matiarCodingstandards matiar
Codingstandards matiar
Matiar Rahman
 

Similar a StyleCop breaking down the barriers to entry (20)

Sitecore development approach evolution – destination helix
Sitecore development approach evolution – destination helixSitecore development approach evolution – destination helix
Sitecore development approach evolution – destination helix
 
Static Analysis Tools for C# Demo
Static Analysis Tools for C# DemoStatic Analysis Tools for C# Demo
Static Analysis Tools for C# Demo
 
Building iOS App Project & Architecture
Building iOS App Project & ArchitectureBuilding iOS App Project & Architecture
Building iOS App Project & Architecture
 
Accelerating time to delivery - Modern tools for COBOL development
Accelerating time to delivery - Modern tools for COBOL developmentAccelerating time to delivery - Modern tools for COBOL development
Accelerating time to delivery - Modern tools for COBOL development
 
Patterns for automating API delivery. API conference
Patterns for automating API delivery. API conferencePatterns for automating API delivery. API conference
Patterns for automating API delivery. API conference
 
Build your android app with gradle
Build your android app with gradleBuild your android app with gradle
Build your android app with gradle
 
Design p atterns
Design p atternsDesign p atterns
Design p atterns
 
ASP.NET MVC Best Practices malisa ncube
ASP.NET MVC Best Practices   malisa ncubeASP.NET MVC Best Practices   malisa ncube
ASP.NET MVC Best Practices malisa ncube
 
Codingstandards matiar
Codingstandards matiarCodingstandards matiar
Codingstandards matiar
 
44 Slides About 22 Modules
44 Slides About 22 Modules44 Slides About 22 Modules
44 Slides About 22 Modules
 
New life inside monolithic application
New life inside monolithic applicationNew life inside monolithic application
New life inside monolithic application
 
Building reusable websites on Drupal 8: lessons learned from transforming red...
Building reusable websites on Drupal 8: lessons learned from transforming red...Building reusable websites on Drupal 8: lessons learned from transforming red...
Building reusable websites on Drupal 8: lessons learned from transforming red...
 
Accelerating time to delivery modern tools for cobol development
Accelerating time to delivery modern tools for cobol developmentAccelerating time to delivery modern tools for cobol development
Accelerating time to delivery modern tools for cobol development
 
Working with PowerShell, Visual Studio Code and Github for the reluctant IT Pro
Working with PowerShell, Visual Studio Code and Github for the reluctant IT ProWorking with PowerShell, Visual Studio Code and Github for the reluctant IT Pro
Working with PowerShell, Visual Studio Code and Github for the reluctant IT Pro
 
Mastering azure devOps - Dot Net Tricks
Mastering azure devOps - Dot Net TricksMastering azure devOps - Dot Net Tricks
Mastering azure devOps - Dot Net Tricks
 
How to R.E.A.D: Steps for how to select the correct module @NEWDCamp 2014
How to R.E.A.D: Steps for how to select the correct module @NEWDCamp 2014How to R.E.A.D: Steps for how to select the correct module @NEWDCamp 2014
How to R.E.A.D: Steps for how to select the correct module @NEWDCamp 2014
 
Github Copilot vs Amazon CodeWhisperer for Java developers at JCON 2023
Github Copilot vs Amazon CodeWhisperer for Java developers at JCON 2023Github Copilot vs Amazon CodeWhisperer for Java developers at JCON 2023
Github Copilot vs Amazon CodeWhisperer for Java developers at JCON 2023
 
Joomla! theming
Joomla! themingJoomla! theming
Joomla! theming
 
Releasing High Quality PHP Packages - ConFoo Montreal 2019
Releasing High Quality PHP Packages - ConFoo Montreal 2019Releasing High Quality PHP Packages - ConFoo Montreal 2019
Releasing High Quality PHP Packages - ConFoo Montreal 2019
 
Releasing High Quality Packages - Longhorn PHP 2021
Releasing High Quality Packages - Longhorn PHP 2021Releasing High Quality Packages - Longhorn PHP 2021
Releasing High Quality Packages - Longhorn PHP 2021
 

Más de Gary Park

Más de Gary Park (10)

A Piece of Cake - DDD North
A Piece of Cake - DDD NorthA Piece of Cake - DDD North
A Piece of Cake - DDD North
 
A Piece of Cake - DDD11 - Reading
A Piece of Cake - DDD11 - ReadingA Piece of Cake - DDD11 - Reading
A Piece of Cake - DDD11 - Reading
 
A Piece of Cake - NDC Oslo 2016
A Piece of Cake - NDC Oslo 2016A Piece of Cake - NDC Oslo 2016
A Piece of Cake - NDC Oslo 2016
 
Having your cake, and eating it too! - DDDScotland
Having your cake, and eating it too! - DDDScotlandHaving your cake, and eating it too! - DDDScotland
Having your cake, and eating it too! - DDDScotland
 
Having your cake, and eating it too!
Having your cake, and eating it too!Having your cake, and eating it too!
Having your cake, and eating it too!
 
Semantic Versioning with GitVersion - Take 2
Semantic Versioning with GitVersion - Take 2Semantic Versioning with GitVersion - Take 2
Semantic Versioning with GitVersion - Take 2
 
Semantic Versioning with GitVersion
Semantic Versioning with GitVersionSemantic Versioning with GitVersion
Semantic Versioning with GitVersion
 
Getting started with caliburn.micro and windows phone 7
Getting started with caliburn.micro and windows phone 7Getting started with caliburn.micro and windows phone 7
Getting started with caliburn.micro and windows phone 7
 
Mmmm, chocolatey goodness!
Mmmm, chocolatey goodness!Mmmm, chocolatey goodness!
Mmmm, chocolatey goodness!
 
Continuous integration 101
Continuous integration 101Continuous integration 101
Continuous integration 101
 

Último

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Último (20)

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 

StyleCop breaking down the barriers to entry

  • 1. StyleCop Breaking down the barriers to entry Gary Ewan Park gep13@gep13.co.uk Twitter: @gep13 Blog: http://www.gep13.co.uk/blog
  • 2. Agenda • • • • • • • • What is StyleCop? Visual Studio Integration MSBuild Integration Using a Custom Task StyleCop Compliance Extending StyleCop Working with “Legacy” Applications Additional Tooling Support
  • 5. A Definition… “StyleCop is an open source static code analysis tool from Microsoft that checks C# code for conformance to StyleCop's recommended coding styles and a subset of Microsoft's .NET Framework Design Guidelines. StyleCop analyzes the source code, allowing it to enforce a different set of rules from FxCop.” * Reference  http://stylecop.codeplex.com/ * http://en.wikipedia.org/wiki/StyleCop
  • 6. What does that mean? • StyleCop is a “plugin” for Visual Studio 2008, 2010, and VS 11 Preview (and in a way, 2005* and Express) • It provides 162 rules over 7 categories of “style” * http://gep13.me/ie1T0V
  • 9. Demo 1 Visual Studio Integration Using StyleCop on a New Project
  • 11. This gets installed by default… During the installation you have the option to install MSBuild files. These files will be required if you want to integrate StyleCop analysis with the Visual Studio build process or a Continuous Integration Server.
  • 12. MSBuild Integration – Visual Studio To add StyleCop as part of the “Build” process in Visual Studio follow these steps: 1. Use the StyleCop.MSBuild Nuget package to install the necessary files and make file edits. 2. This edits the project file to include: 3. Add the following property in the project file to force all warnings to be treated as errors:
  • 13. Demo 2 MSBuild Integration Including StyleCop Analysis as part of the Build Process
  • 15. MSBuild Integration – Custom Task • StyleCop also includes a MSBuild task that can be used to create a custom build step • Manning Publications – Continuous Integration in .NET • http://gep13.me/MuNEL9
  • 16. Demo 3 Using a Custom Task Running StyleCop Analysis as a custom task with MSBuild and TeamCity
  • 18. Visual Studio Templates During the installation you have the option to install a new set of Visual Studio Templates, which will already by StyleCop “compliant”
  • 19. Going further with more templates… • Use StyleCop compliant code snippets • http://vssnippets.codeplex.com/ • Use StyleCop compliant project/item templates • http://vstemplates.codeplex.com/
  • 20. Talk to your Team • Get Buy-In from your Team Members • Only enable the StyleCop rules that you want to follow • Have a team meeting to decide
  • 21. Demo 4 StyleCop Compliance Using StyleCop Compliant Project/Item Templates and Code Snippets
  • 23. Add More StyleCop Rules • There are a number of projects that are extending the builtin StyleCop rules:  StyleCop+ o http://stylecopplus.codeplex.com/  JSL StyleCop o http://jslstylecop.codeplex.com/
  • 24. Create your own Custom StyleCop Rule 1. 2. 3. 4. 5. 6. Create a .Net Framework 3.5 Class Library Project in Visual Studio Add a reference to StyleCop.dll and StyleCop.Csharp.dll Create your analyzer class that inherits from SourceAnalyzer Add an XML file with the same name as the analyzer class. Set the properties of the XML file to be an Embedded Resource and not copy to the output directory Override the AnalyzeDocument method You are ready to write your own analysis code • http://gep13.me/JIn0xL
  • 25. StyleCop Contrib This CodePlex Project started out life as another Custom StyleCop Rule Library, however, now it is a Unit Testing Framework for Custom StyleCop Rules http://stylecopcontrib.codeplex.com Allows you to quickly begin testing your Rules, without the need to debug multiple instances of Visual Studio
  • 26. Demo 5 Extending StyleCop Create a Custom StyleCop Rule and then test it with Unit Tests
  • 28. Using StyleCop in an Existing Project • Turn off analysis for generated code • Surround code in a region with the text „generated code‟ within the title • Turn off StyleCop Analysis for a particular file using SourceFileList in Settings.StyleCop file • Turn off StyleCop Analysis for an entire project using Settings.StyleCop file
  • 29. Demo 6 Working with “Legacy” Applications Turning StyleCop off for an existing large project using Settings file
  • 31. Refactoring StyleCop Rules • There are plugins available for both CodeRush and ReSharper to help refactor code to be StyleCop Compliant • StyleCop For ReSharper  Now included as part of the core StyleCop installation  Automatically fixes 128 StyleCop issues during ReSharper “CleanUp Code…” • Style Ninja for CodeRush  http://code.google.com/p/dxcorecommunityplugins/wiki/ CR_StyleNinja  Fixes 23 StyleCop Issues
  • 32. ReSharper Integration During the installation you have the option to install ReSharper Integration files, these will be required if you want to be able to analyse and correct StyleCop warnings using ReSharper Refactorings.
  • 33. Demo 7 Additional Tooling Support Using ReSharper to improve StyleCop Compliance
  • 34. Questions? Feel free to email me any additional questions at gep13@gep13.co.uk

Notas del editor

  1. Questions – feel free to ask them at any point, just throw up your hand, or if I don’t see you, feel free to shout at me.Explain what I have on my machine, i.e. all code in Local Git Repo, Git Extensions in Visual Studio, TeamCity, local Nuget Repo for a couple packagesMake sure to explain that the intention of the talk is to show how, out of the box, StyleCop can appear to be slightly “jarring”. However, there are processes and tooling that you can add/implemented that can make things easier.
  2. Ask who is currently using StyleCopAsk who is currently using FxCop – Code AnalysisCoding Standard ARE NOT the personal preference of the most senior person on the team!
  3. The rules are classified into the following categories: - Documentation - Layout - Maintainability - Naming - Ordering - Readability - SpacingStyleCop includes both GUI and command line versions of the tool. It is possible to create new rules to be used.StyleCop was re-released as an open source project in April of 2010, at http://stylecop.codeplex.com.Originally used internally within Microsoft, and later released to the public.
  4. StyleCop Analysis at: - Solution Level - Project Level - Code File LevelTurn On and Off RulesConfigure SettingsOverride Default Hungarian NotationSpecify Company Information
  5. Mention that this isn’t “required” if you use the StyleCopNuget Package
  6. The MSBuild files that are installed as part of the StyleCop installation are not actually required if you use the Nuget Package.
  7. C:\Program Files (x86)\MSBuild\Microsoft\StyleCop\v4.4
  8. StyleCop+ adds - Advanced Naming Rules - More Custom Rules - Code Line Must Not End With Whitespace - Check Allowed Indentation Characters - Check Whether Last Code Line is Empty - Code Line Must Not Be Longer Than… - Method Must Not Contain More Lines Than… - Property Must Not Contain More Lines Than…JSL StyleCop adds - More Custom Rules - Members Must be in Alphabetical Order - Don’t Compare to Boolean Constants - Local Variable Assignment Unused - Local Variables Should be Set Where They are Declared - Move Variable Declaration to Usage Level