How to get a stylecop ruleset trough nuget in a .net standard project
We solved the issue with the following:
CodeAnalysis.props
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)..\CodeAnalysis.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<AdditionalFiles Include="$(MSBuildThisFileDirectory)..\stylecop.json" />
</ItemGroup>
</Project>
CodeAnalysis.nuspec
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>CodeAnalysis</id>
<version>1.0.0</version>
<description>Roslyn analyzers, rule sets and additional configuration to be used for Code Analysis</description>
<authors></authors>
<owners></owners>
<dependencies>
<dependency id="Stylecop.Analyzers" version="1.0.2" />
</dependencies>
</metadata>
<files>
<file src="stylecop.json" />
<file src="CodeAnalysis.ruleset" />
<file src="CodeAnalysis.props" target="build" />
</files>
</package>