Update fake, paket and tests to dotnet8 #224
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request modernizes the build system and updates dependencies to use .NET 8, while removing legacy build scripts and tools. It migrates the build process from FAKE scripts to a .NET SDK-style project, updates solution and project files accordingly, and ensures all tooling and test projects are compatible with .NET 8. Additionally, it updates test frameworks and cleans up obsolete references.
Build system modernization:
Migrated the build process from a FAKE script (
build.fsx) to a .NET SDK-style executable project (build/build.fsproj,build/build.fs), updating all related scripts and CI workflows to usedotnet run --project build/build.fsprojinstead ofdotnet fake run build.fsx. [1] [2] [3] [4] [5] [6] [7] [8] [9]Removed legacy build artifacts and script references from the solution file (
FSharpx.Collections.sln), and added the newbuildproject. [1] [2] [3] [4]Dependency and framework upgrades:
net8.0), includingglobal.json, test projects, and documentation projects. [1] [2] [3] [4] [5] [6] .config/dotnet-tools.json [7]Test infrastructure updates:
Fable.JesterandFable.FastChecktoFable.Mocha, updating test code accordingly and adding a program entry point. [1] [2] [3] [4]Version and metadata updates:
3.0.1to3.1.0in bothFSharpx.CollectionsandFSharpx.Collections.Experimental. [1] [2] [3] [4]Minor code and compatibility fixes:
TaggedCollections.fsfor correct set comparison.