Skip to content

Commit 92869e2

Browse files
authored
Merge pull request #439 from commandlineparser/fix-fsharp-build
modify commandLine project to support fsharp net40
2 parents 5c71e36 + 8dcaa6f commit 92869e2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/CommandLine/CommandLine.csproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,7 @@
4141
<ItemGroup Condition="'$(TargetFramework)' != 'net40' and '$(BuildTarget)' == 'fsharp'">
4242
<PackageReference Include="FSharp.Core" Version="4.5.1" Condition="'$(BuildTarget)' == 'fsharp'" />
4343
</ItemGroup>
44-
44+
<ItemGroup Condition="'$(TargetFramework)' == 'net40' and '$(BuildTarget)' == 'fsharp'">
45+
<PackageReference Include="FSharp.Core" Version="4.0.0.1" Condition="'$(BuildTarget)' == 'fsharp'" />
46+
</ItemGroup>
4547
</Project>

0 commit comments

Comments
 (0)