2021-06-27 12:19:51 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-04-18 14:41:53 +01:00
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-04-01 17:05:46 +01:00
|
|
|
<TargetFrameworks>net7.0;net6.0;netcoreapp3.1</TargetFrameworks>
|
2020-04-18 14:41:53 +01:00
|
|
|
<IsPackable>false</IsPackable>
|
2023-04-02 01:07:01 +01:00
|
|
|
<CoverletOutputFormat>json,cobertura</CoverletOutputFormat>
|
|
|
|
<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-04-05 22:26:31 +01:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1"/>
|
2023-03-28 14:52:55 +01:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0"/>
|
2023-08-09 15:17:50 +01:00
|
|
|
<PackageReference Include="NSubstitute" Version="5.0.0"/>
|
2023-04-05 22:26:31 +01:00
|
|
|
<PackageReference Include="NUnit" Version="3.13.3"/>
|
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="4.4.2"/>
|
|
|
|
<PackageReference Include="NUnit.Analyzers" Version="3.6.1"/>
|
|
|
|
<PackageReference Include="coverlet.collector" Version="3.2.0"/>
|
2023-04-10 12:44:53 +01:00
|
|
|
<PackageReference Include="System.Reactive" Version="5.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>
|