1
0
mirror of https://github.com/oliverbooth/X10D synced 2024-11-09 22:55:42 +00:00
X10D/X10D.Tests/X10D.Tests.csproj

30 lines
1.0 KiB
XML
Raw Normal View History

2021-06-27 12:19:51 +01:00
<Project Sdk="Microsoft.NET.Sdk">
2020-04-18 14:41:53 +01:00
<PropertyGroup>
2021-06-27 12:19:51 +01:00
<TargetFramework>net5.0</TargetFramework>
2020-04-18 14:41:53 +01:00
<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>
2021-06-27 12:19:51 +01:00
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.4" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.4" />
<PackageReference Include="coverlet.collector" Version="3.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2020-04-18 14:41:53 +01:00
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\X10D\X10D.csproj"/>
2020-04-18 14:41:53 +01:00
</ItemGroup>
2021-07-20 14:47:33 +01:00
<ItemGroup>
<None Remove="1000primes.txt" />
<EmbeddedResource Include="1000primes.txt" />
</ItemGroup>
2021-06-27 12:19:51 +01:00
</Project>