2020-04-19 14:31:29 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-04-18 14:41:53 +01:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
<IsPackable>false</IsPackable>
|
2020-04-19 14:10:42 +01:00
|
|
|
|
<CodeAnalysisRuleSet>..\X10D.ruleset</CodeAnalysisRuleSet>
|
2020-04-21 03:45:02 +01:00
|
|
|
|
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>
|
2020-04-18 14:41:53 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
|
|
|
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.0.0" />
|
|
|
|
|
<PackageReference Include="coverlet.collector" Version="1.0.1" />
|
2020-04-19 14:31:29 +01:00
|
|
|
|
<PackageReference Include="Roslynator.Analyzers" Version="2.3.0">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2020-04-18 14:41:53 +01:00
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.164">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\X10D\X10D.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|