Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,19 @@ A small set of extensions to make test assertions more fluent when using CSharpF

## Dependencies

This library is compatible with .NET 6+.
This library is compatible with .NET 6+. It requires the following minimum package versions:

CSharpFunctionalExtensons >= 2.35.0

FluentAssertions >= 6.7.0.

## Installation

This library is available on Nuget and can be installed with the .NET CLI using the following command:

```bash
dotnet add package CSharpFunctionalExtensions.FluentAssertions
```

## Usage

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CSharpFunctionalExtensions" Version="2.34.3" />
<PackageReference Include="CSharpFunctionalExtensions" Version="2.35.0" />
<PackageReference Include="FluentAssertions" Version="6.7.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
Expand Down