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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -247,3 +247,6 @@ launchSettings.json
.idea/

TestResults.xml

# MSBuild binary logs
*.binlog
5 changes: 5 additions & 0 deletions Release Notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### New in 2.1.1

* Fix FSharp.Core dependency not being specified in the NuGet package for `net5.0` target but the dll being built
against 8.0.0 anyway.

### New in 2.1.0

* Synchronize with the latest FSharp.Core version and support the `%B` format specifier
Expand Down
1 change: 1 addition & 0 deletions src/BlackFox.MasterOfFoo/BlackFox.MasterOfFoo.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<ItemGroup>
<PackageReference Include="FSharp.Core" Version="4.5.0" Condition="'$(TargetFramework)' == 'net461'" />
<PackageReference Include="FSharp.Core" Version="4.5.0" Condition="'$(TargetFramework)' == 'netstandard2.0'" />
<PackageReference Include="FSharp.Core" Version="4.5.0" Condition="'$(TargetFramework)' == 'net5.0'" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All"/>
</ItemGroup>
</Project>