Cosmos/Directory.Build.targets
2018-11-13 15:33:12 +00:00

24 lines
705 B
XML

<Project>
<PropertyGroup>
<SignAssembly>True</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<CodeAnalysisRuleSet>$(RepoRoot)build\Cosmos.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<RoslynAnalyzer Include="Microsoft.CodeAnalysis.Analyzers" />
<RoslynAnalyzer Include="Microsoft.CodeQuality.Analyzers" />
<RoslynAnalyzer Include="Microsoft.NetCore.Analyzers" />
<RoslynAnalyzer Include="Microsoft.NetFramework.Analyzers" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="@(RoslynAnalyzer)" PrivateAssets="All" />
</ItemGroup>
<Import Project="build\Targets\Import.targets" />
</Project>