2021-06-27 12:19:51 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-04-18 14:41:53 +01:00
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-06-12 03:45:51 +01:00
|
|
|
<TargetFrameworks>net8.0;net6.0</TargetFrameworks>
|
2020-04-18 14:41:53 +01:00
|
|
|
<IsPackable>false</IsPackable>
|
2023-08-28 12:50:26 +01:00
|
|
|
<IsTestProject>true</IsTestProject>
|
2024-02-17 17:23:02 +00:00
|
|
|
<CoverletOutputFormat>xml,cobertura</CoverletOutputFormat>
|
2023-04-02 01:07:01 +01:00
|
|
|
<CollectCoverage>true</CollectCoverage>
|
2023-08-22 17:11:20 +01:00
|
|
|
<CodeAnalysisTreatWarningsAsErrors>false</CodeAnalysisTreatWarningsAsErrors>
|
2020-04-18 14:41:53 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2023-04-05 17:37:26 +01:00
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
|
|
|
|
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2020-04-18 14:41:53 +01:00
|
|
|
<ItemGroup>
|
2023-11-14 16:56:40 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0"/>
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0"/>
|
|
|
|
<PackageReference Include="NSubstitute" Version="5.1.0"/>
|
|
|
|
<PackageReference Include="NUnit" Version="3.14.0"/>
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0"/>
|
|
|
|
<PackageReference Include="NUnit.Analyzers" Version="3.9.0"/>
|
|
|
|
<PackageReference Include="coverlet.collector" Version="6.0.0"/>
|
|
|
|
<PackageReference Include="System.Reactive" Version="6.0.0"/>
|
2020-04-18 14:41:53 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-04-02 03:31:19 +01:00
|
|
|
<ProjectReference Include="..\X10D.Hosting\X10D.Hosting.csproj"/>
|
2022-02-14 12:15:38 +00:00
|
|
|
<ProjectReference Include="..\X10D\X10D.csproj"/>
|
2020-04-18 14:41:53 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
2021-07-20 14:47:33 +01:00
|
|
|
<ItemGroup>
|
2022-02-14 12:18:35 +00:00
|
|
|
<None Remove="1000primes.txt"/>
|
|
|
|
<EmbeddedResource Include="1000primes.txt"/>
|
2021-07-20 14:47:33 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
2021-06-27 12:19:51 +01:00
|
|
|
</Project>
|