Skip to content

Commit

Permalink
Add .NET Framework 4.6.1 as a target.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nihlus committed May 1, 2023
1 parent b14470a commit f0f1546
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Remora.Results/Remora.Results.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Remora.Sdk/2.0.1">

<PropertyGroup>
<LibraryFrameworks>netstandard2.0;netstandard2.1;net6.0;net7.0</LibraryFrameworks>
<LibraryFrameworks>net461;netstandard2.0;netstandard2.1;net6.0;net7.0</LibraryFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand All @@ -19,4 +19,12 @@
<PackageTags>$(PackageTags);algebraic datatype;result;results</PackageTags>
</PropertyGroup>

<Choose>
<When Condition="'$(TargetFramework)' == 'net461'">
<ItemGroup>
<PackageReference Include="System.ValueTuple" Version="4.5.0"/>
</ItemGroup>
</When>
</Choose>

</Project>

0 comments on commit f0f1546

Please sign in to comment.