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>
|
2023-03-31 17:30:30 +01:00
|
|
|
<LangVersion>11.0</LangVersion>
|
2020-04-18 14:41:53 +01:00
|
|
|
<IsPackable>false</IsPackable>
|
2022-02-14 12:18:35 +00:00
|
|
|
<Nullable>enable</Nullable>
|
2022-02-14 12:20:55 +00:00
|
|
|
<ImplicitUsings>true</ImplicitUsings>
|
2023-04-02 01:07:01 +01:00
|
|
|
<CoverletOutputFormat>json,cobertura</CoverletOutputFormat>
|
|
|
|
<CollectCoverage>true</CollectCoverage>
|
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-03-31 20:21:17 +01:00
|
|
|
<PackageReference Include="Moq" Version="4.18.4"/>
|
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"/>
|
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>
|