Skip to content

Commit c895ece

Browse files
authored
Merge pull request #10 from vbfox/specific_fshare_core_version
Specify FSharp.Core version 4.5 for net5 builds
2 parents d3df333 + b535df6 commit c895ece

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -247,3 +247,6 @@ launchSettings.json
247247
.idea/
248248

249249
TestResults.xml
250+
251+
# MSBuild binary logs
252+
*.binlog

Release Notes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### New in 2.1.1
2+
3+
* Fix FSharp.Core dependency not being specified in the NuGet package for `net5.0` target but the dll being built
4+
against 8.0.0 anyway.
5+
16
### New in 2.1.0
27

38
* Synchronize with the latest FSharp.Core version and support the `%B` format specifier

src/BlackFox.MasterOfFoo/BlackFox.MasterOfFoo.fsproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<ItemGroup>
2525
<PackageReference Include="FSharp.Core" Version="4.5.0" Condition="'$(TargetFramework)' == 'net461'" />
2626
<PackageReference Include="FSharp.Core" Version="4.5.0" Condition="'$(TargetFramework)' == 'netstandard2.0'" />
27+
<PackageReference Include="FSharp.Core" Version="4.5.0" Condition="'$(TargetFramework)' == 'net5.0'" />
2728
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
2829
</ItemGroup>
2930
</Project>

0 commit comments

Comments
 (0)