mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-09 22:55:42 +00:00
37 lines
1.4 KiB
XML
37 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net7.0;net6.0;netcoreapp3.1</TargetFrameworks>
|
|
<IsPackable>false</IsPackable>
|
|
<CoverletOutputFormat>json,cobertura</CoverletOutputFormat>
|
|
<CollectCoverage>true</CollectCoverage>
|
|
<CodeAnalysisTreatWarningsAsErrors>false</CodeAnalysisTreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
|
|
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1"/>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.5.0"/>
|
|
<PackageReference Include="NSubstitute" Version="5.0.0"/>
|
|
<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"/>
|
|
<PackageReference Include="System.Reactive" Version="5.0.0"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\X10D.Hosting\X10D.Hosting.csproj"/>
|
|
<ProjectReference Include="..\X10D\X10D.csproj"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="1000primes.txt"/>
|
|
<EmbeddedResource Include="1000primes.txt"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|