Skip to content
Open
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>netstandard2.0</TargetFramework>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's acceptable to target both

Suggested change
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFramework>net6.0;netstandard2.0</TargetFramework>

<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<Description>
This package provides a set of extensions to FluentAssertions to simplify the testing of project using CSharpFunctionalExtensions
Expand Down
Loading