Мы пытаемся предоставить пакет nuget для всех наших проектов с набором правил stylecop.Мы получаем файлы в проекте, но набор правил не применяется к нашим проектам.Он по-прежнему использует minimimumrecomended.ruleset.
Теперь у нас есть:
Custom.stylecop.props
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<RunCodeAnalysis>true</RunCodeAnalysis>
<CodeAnalysisRuleSet>Custom.StyleCop.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
</Project>
custom.stylecop.targets
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<AdditionalFiles Include="$(MSBuildThisFileDirectory)\Content\stylecop.json">
<Link>stylecop.json</Link>
</AdditionalFiles>
</ItemGroup>
</Project>
Custom.stylecop.nuspec
<contentFiles>
<files include="Content/stylecop.json" buildAction="EmbeddedResource" />
</contentFiles>
....
<files>
<file src="build\**" target="build" />
<file src="Content/stylecop.json" target="contentFiles" />
</files>
Есть ли у кого-нибудь идеи или примеры на github или около того, где мы можем найти пример, потому что мы не смогли их найти.