Modernize build to FAKE/Paket/dotnet CLI, add GitHub Actions CI - #1
Merged
Merged
Conversation
- Convert BlackFox.FsGetLine and TestApp to SDK-style .fsproj targeting netstandard2.0 / net10.0, dropping the old .NET Framework 4.5 / packages-folder setup. - Replace the vendored build/TaskDefinitionHelper.fsx and build/CmdLine.fs (old hand-rolled copies) with the BlackFox.Fake.BuildTask and BlackFox.CommandLine NuGet packages. - Rewrite the build as a compiled console project (build/, run via `dotnet run`) instead of an .fsx script driven by a committed paket.exe/FAKE.exe, matching the current FoxSharp build layout. - Manage build-only dependencies through a Paket "Build" group restored via `dotnet tool restore` + `dotnet paket`, no more committed binaries. - Replace Travis CI and AppVeyor with a GitHub Actions workflow (.github/workflows/ci.yml) building on Linux and Windows. - Drop a stray legacy artifact (BlackFox.ColoredPrintf-0.1.0.zip) that had been committed by mistake, and stop tracking artifacts/ going forward.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
BlackFox.FsGetLineandTestAppto SDK-style.fsproj(netstandard2.0 / net10.0), dropping the old .NET Framework 4.5 /packages/folder setup that required Mono to build.build/TaskDefinitionHelper.fsxandbuild/CmdLine.fs(old hand-rolled copies of this functionality) with the currentBlackFox.Fake.BuildTaskandBlackFox.CommandLineNuGet packages.build/, run viadotnet run) instead of an.fsxscript driven by a committedpaket.exe/FAKE.exe, matching the current FoxSharp build layout.dotnet tool restore+dotnet paket, no more committed binaries..github/workflows/ci.yml) building on Linux and Windows.BlackFox.ColoredPrintf-0.1.0.zip) that had been committed toartifacts/by mistake, and stop trackingartifacts/going forward.Test plan
dotnet buildon bothsrc/BlackFox.FsGetLineandsrc/TestAppindividually./build.sh CI(paket restore -> dotnet build solution -> dotnet pack) succeeds locallyTestAppoutput (renders the shell banner/prompt correctly)Generated by Claude Code