Files
Sharp7Reactive/Sharp7.Rx.Tests/Sharp7.Rx.Tests.csproj
Peter Butzhammer 8836c14e2b
Some checks failed
Release / build (push) Has been cancelled
Update nuget packages
2024-07-22 14:21:15 +02:00

29 lines
881 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AnalysisLevel>latest-Recommended</AnalysisLevel>
<!--
CA1859: Change type of field 'xxx' from interface to type for performance reasons
CA1852: Type 'ReadFromBuffer' can be sealed
-->
<NoWarn>$(NoWarn);CA1859;CA1852</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DeepEqual" Version="5.1.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="NUnit" Version="4.1.0" />
<PackageReference Include="Shouldly" Version="4.2.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Sharp7.Rx\Sharp7.Rx.csproj" />
</ItemGroup>
</Project>