Visual Studio 2017 StyleCop Analyzers template for .NET Core

With the new Visual Studio 2017 out you might have been busy upgrading your .NET Core solutions to the new format and accidentally found out that StyleCop Analyzers stopped working? Automated upgrade will just upgrade projects, however will not adjust Visual Studio 2017 StyleCop Analyzers settings. Therefore, I’ve updated my template’s source code and added this quick guide.

First, you need to upgrade or install StyleCop Analyzers nuget package (as of now the current version is 1.1.1-beta.61). Command to get the latest pre-release version:

Install-Package StyleCop.Analyzers -Pre

.NET Core compatibility. In Visual Studio 2017 StyleCop Analyzers work much better compared to Visual Studio 2015, since you get real-time warnings/errors highlight, fix suggestions that work really well together with ReSharper.

I have following settings on:

  • Make warnings to be treated as errors (disabled by default).
  • Suppress 1701;1702;1705 warnings (enabled by default).

To enable a ruleset that we previously had in “_stylecop” folder in the solution folder, you need to manually edit project file and add following.

<PropertyGroup>
  <CodeAnalysisRuleSet>$(SolutionDir)\_stylecop\StyleCopeRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>

<ItemGroup>
  <AdditionalFiles Include="$(SolutionDir)\_stylecop\stylecop.json" Link="stylecop.json" />
</ItemGroup>

This specifies what ruleset to use, and adds a link to StyleCope Analyzers settings file for additional settings. “stylecop.json” could be linked manually using Visual Studio’s UI as well, however applying this change to multiple project files might be easier to copy-paste the code snippet.

In my test solution I have .NET Core application and a library to show how rulesets are shared between projects. My folders and files structure is displayed in the screenshot below.

Visual Studio 2017 StyleCop Analyzers solution files

Important. After quick research I was unable to find how to enable spelling dictionary in StyleCop Analyzers in VS2017, hence “CustomDictionary.xml” file is just a placeholder for now (deleted). Seems like Microsoft won’t implement support for custom dictionaries.

You can easily test if StyleCop Analyzers work by removing method documentation comments and adding extra space after curly braces, and you will see errors highlighted in red right away! See screenshot below.

Visual Studio 2017 StyleCop Analyzers real-time style error highlighting

All in all, just a few small changes and we have Visual Studio 2017 StyleCop Analyzers working in our projects again. Happy coding!

All source code can found on my GitHub.

A previous blog post about Visual Studio 2015 is here.

Update 17/06/2017

Seems like Visual Studio 2017 versions prior VS 2017 Preview 2 (15.3.0-pre.2.0+26606.0) may not pick up StyleCop.Analyzers ruleset during development and wrongly highlight code in red but would work just fine during the build.

Update 24/05/2017

As Sam mentioned in the comment you need to set an absolute path to the ruleset file to make StyleCop.Analyzers work. As in the code snippet above, you could use $(SolutionDir) macro to achieve this. More macros on MSDN.

Update 31/12/2017

Upgraded projects to .NET Core 2, added an example of a web application, and switched Main function to async in Program.cs. Also, deleted CustomDictionary.xml, since it doesn’t look like Microsoft will re-add the dictionary feature.

Update 27/12/2019

Upgraded to .NET Core 2.1 (LTS release), and upgraded SyleCop.Analyzers to 1.1.1-beta.61.