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