SimpleResults

A lightweight implementation of the Result pattern for error handling without exceptions
git clone git://git.hanetzok.net/SimpleResults
Log | Files | Refs | README | LICENSE

Tests.csproj (839B)


      1 <Project Sdk="Microsoft.NET.Sdk">
      2 
      3     <PropertyGroup>
      4         <TargetFramework>net9.0</TargetFramework>
      5         <ImplicitUsings>enable</ImplicitUsings>
      6         <Nullable>enable</Nullable>
      7         <IsPackable>false</IsPackable>
      8     </PropertyGroup>
      9 
     10     <ItemGroup>
     11         <PackageReference Include="AwesomeAssertions" Version="9.2.1" />
     12         <PackageReference Include="coverlet.collector" Version="6.0.2"/>
     13         <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0"/>
     14         <PackageReference Include="xunit" Version="2.9.2"/>
     15         <PackageReference Include="xunit.runner.visualstudio" Version="2.8.2"/>
     16     </ItemGroup>
     17 
     18     <ItemGroup>
     19         <Using Include="Xunit"/>
     20     </ItemGroup>
     21 
     22     <ItemGroup>
     23       <ProjectReference Include="..\SimpleResults\SimpleResults.csproj" />
     24     </ItemGroup>
     25 
     26 </Project>