mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-22 17:58:47 +00:00
Oliver Booth
9d870b2c24
* coverlet.collector 6.0.2 * Microsoft.Extensions.Hosting 9.0.0 * Microsoft.NET.Test.Sdk 17.11.1 * NSubstitute 5.3.0 * NUnit 4.2.2 * NUnit3TestAdapter 4.6.0 * NUnit.Analyzers 4.3.0 * System.Reactive 6.0.1
38 lines
1.5 KiB
XML
38 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
<CoverletOutputFormat>xml,cobertura</CoverletOutputFormat>
|
|
<CollectCoverage>true</CollectCoverage>
|
|
<CodeAnalysisTreatWarningsAsErrors>false</CodeAnalysisTreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
|
|
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<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"/>
|
|
</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>
|