无法在VS2017 .net Core中附带NuGet包的stylecop.json和custom.ruleset文件发送

时间:2019-03-22 00:15:13

标签: c# .net core

我无法使用.net core 2.1在VS2017中随带NuGet包一起运送stylecop.json和custom.ruleset文件。

我用2.0创建了一个.net核心项目,并使用Stylecop.json和Customreluset文件,并从nuget加载了Stylecop.Analyzer软件包和Fxcopanalyzer。目标:我想将stylecop文件作为自定义nuget包提供。但是我不知道如何创建所需的.csproj条目

  <dependencies>
        <dependency id="Stylecop.Analyzers" version="1.0.2" />
    </dependencies>
</metadata>
<files>
    <file src="stylecop.json" />
    <file src="StyleCop.ruleset" />
    <file src="CSharp.Styleguide.props" target="build" />
</files>

请帮助我解决问题。预先感谢

0 个答案:

没有答案