Skip to content

Commit

Permalink
net8 minimum. run gh action and macos and ubuntu as well.
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsink committed Jan 6, 2025
1 parent dea4638 commit fd96edb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ jobs:

strategy:
matrix:
# TODO want macos here too, but the build currently fails there
os: [windows-2022]
os: [windows-2022, ubuntu-24.04, macos-14]

runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion build/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ let main argv =
]

let fake_xunit_tfms = [
yield "net6.0"
yield "net8.0"
if RuntimeInformation.IsOSPlatform(OSPlatform.Windows) then yield "net462"
]

Expand Down
4 changes: 2 additions & 2 deletions version_stamp/version_stamp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ private static void gen_directory_build_props(string root, string nupkgs_dir_nam
f.WriteElementString("depversion_xunit", "2.6.3");
f.WriteElementString("depversion_xunit_runner_visualstudio", "2.5.5");
f.WriteElementString("depversion_microsoft_net_test_sdk", "17.8.0");
f.WriteElementString("tfm_net", "net6.0");
f.WriteElementString("tfm_net", "net8.0");
f.WriteElementString("tfm_framework", "net462");
f.WriteElementString("tfm_windows", "net6.0-windows");
f.WriteElementString("tfm_windows", "net8.0-windows");
f.WriteElementString("tfm_ios", "net8.0-ios");
f.WriteElementString("tfm_tvos", "net8.0-tvos");
f.WriteElementString("tfm_maccatalyst", "net8.0-maccatalyst");
Expand Down

0 comments on commit fd96edb

Please sign in to comment.