From e503e7a492f080a68903433a24e5db5c5828ad41 Mon Sep 17 00:00:00 2001 From: Camden Narzt Date: Thu, 14 Nov 2024 11:41:46 -0700 Subject: [PATCH] new dotnet version --- .github/workflows/dotnet.yml | 5 ++--- Getargv.Tests/Getargv.Tests.csproj | 2 +- Getargv.Tool/Getargv.Tool.csproj | 2 +- Getargv/Getargv.csproj | 2 +- README.md | 2 +- 5 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 2d8d0c7..46353ba 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -23,9 +23,8 @@ jobs: dotnet: # update other matrix's version below when new latest released #- 10 # REL: 2025-11-10 EOL: 2028-11-11 - #- 9 # REL: 2024-11-10 EOL: 2026-11-11 + - 9 # EOL: 2026-11-11 - 8 # EOL: 2026-11-10 - - 6 # EOL: 2024-11-12 # version support doc: https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core steps: - uses: actions/checkout@v4 @@ -70,7 +69,7 @@ jobs: strategy: matrix: dotnet: - - 8 # Check above for newest version + - 9 # Check above for newest version steps: - uses: actions/checkout@v4 with: diff --git a/Getargv.Tests/Getargv.Tests.csproj b/Getargv.Tests/Getargv.Tests.csproj index 9ce4d61..e4377b6 100644 --- a/Getargv.Tests/Getargv.Tests.csproj +++ b/Getargv.Tests/Getargv.Tests.csproj @@ -5,7 +5,7 @@ - net6.0;net7.0;net8.0 + net8.0;net9.0 osx-x64;osx-arm64 enable enable diff --git a/Getargv.Tool/Getargv.Tool.csproj b/Getargv.Tool/Getargv.Tool.csproj index c1bb329..6141568 100644 --- a/Getargv.Tool/Getargv.Tool.csproj +++ b/Getargv.Tool/Getargv.Tool.csproj @@ -10,7 +10,7 @@ Exe - net6.0;net7.0;net8.0 + net8.0;net9.0 enable enable cam.narzt.getargv.cs.tool diff --git a/Getargv/Getargv.csproj b/Getargv/Getargv.csproj index 0c74f0b..463e2b1 100644 --- a/Getargv/Getargv.csproj +++ b/Getargv/Getargv.csproj @@ -1,7 +1,7 @@ - net6.0;net8.0 + net8.0;net9.0 enable true osx-arm64;osx-x64 diff --git a/README.md b/README.md index bb9fd66..b808d73 100644 --- a/README.md +++ b/README.md @@ -31,4 +31,4 @@ Running `make install_dylib`, installs the library to the `/usr/local/` prefix b I'm working on building binary artifacts to install without compilation, using `pkg` installers, however even once that's done, depending on your system, it may still be necessary to compile from source; eg. if you have built your own xnu kernel with a custom `PID_MAX` value. ## Building `libgetargv` -I've built `libgetargv` on macOS 10.7-13, using only the CLT package, not the full Xcode install. If you need to override variables, do so inside the `make` command, eg: `make EXTRA_CPPFLAGS=-DMACRO EXTRA_CFLAGS=-std=c17 dylib`. Since c# did not exist when 10.6 was current, that should not be a concern for this project. +I've built `libgetargv` on macOS 10.7-15, using only the CLT package, not the full Xcode install. If you need to override variables, do so inside the `make` command, eg: `make EXTRA_CPPFLAGS=-DMACRO EXTRA_CFLAGS=-std=c17 dylib`. Since c# did not exist when 10.6 was current, that should not be a concern for this project.