diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 38082f2..c726d9f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: - name: Set up .NET SDK uses: actions/setup-dotnet@v4 with: - dotnet-version: '10.0' + dotnet-version: '11.0.100-preview.5.26302.115' - name: Restore run: dotnet restore ioxide.slnx diff --git a/Examples/Examples.csproj b/Examples/Examples.csproj index 07a8237..297d165 100644 --- a/Examples/Examples.csproj +++ b/Examples/Examples.csproj @@ -2,7 +2,7 @@ Exe - net10.0 + net11.0 enable enable true diff --git a/Playground/Playground.csproj b/Playground/Playground.csproj index 98ca90e..651c673 100644 --- a/Playground/Playground.csproj +++ b/Playground/Playground.csproj @@ -2,7 +2,7 @@ Exe - net10.0 + net11.0 enable enable true diff --git a/Tests/ioxide.e2e.csproj b/Tests/ioxide.e2e.csproj index 22951b4..e365984 100644 --- a/Tests/ioxide.e2e.csproj +++ b/Tests/ioxide.e2e.csproj @@ -11,7 +11,7 @@ Exe - net10.0 + net11.0 enable enable true diff --git a/global.json b/global.json new file mode 100644 index 0000000..8b06125 --- /dev/null +++ b/global.json @@ -0,0 +1,6 @@ +{ + "sdk": { + "version": "11.0.100-preview.5.26302.115", + "rollForward": "latestFeature" + } +} diff --git a/ioxide.file/ioxide.file.csproj b/ioxide.file/ioxide.file.csproj index 7597777..d79c828 100644 --- a/ioxide.file/ioxide.file.csproj +++ b/ioxide.file/ioxide.file.csproj @@ -1,14 +1,14 @@ - net10.0 + net11.0 enable enable true ioxide.file ioxide.file - 0.0.6 + 0.0.7 MDA2AV File serving for the ioxide io_uring runtime: immutable asset snapshots with baked responses, pooled positional ring reads, atomic reloads. MIT diff --git a/ioxide.pg/ioxide.pg.csproj b/ioxide.pg/ioxide.pg.csproj index 82efaec..159f014 100644 --- a/ioxide.pg/ioxide.pg.csproj +++ b/ioxide.pg/ioxide.pg.csproj @@ -1,14 +1,14 @@ - net10.0 + net11.0 enable enable true ioxide.pg ioxide.pg - 0.0.6 + 0.0.7 MDA2AV Postgres driver for the ioxide io_uring runtime: pooled ring-native connections per reactor, ring-native connect and handshake, inline completion resume. MIT diff --git a/ioxide.redis/ioxide.redis.csproj b/ioxide.redis/ioxide.redis.csproj index fe1bd23..93cfb95 100644 --- a/ioxide.redis/ioxide.redis.csproj +++ b/ioxide.redis/ioxide.redis.csproj @@ -1,14 +1,14 @@ - net10.0 + net11.0 enable enable true ioxide.redis ioxide.redis - 0.0.6 + 0.0.7 MDA2AV Redis client for the ioxide io_uring runtime: pooled ring-native connections per reactor, full RESP2 protocol, a generic command API plus typed helpers (strings, keys, hashes, lists, sets, sorted sets, pub/sub, transactions, scripting), and pipelining. Inline completion resume. MIT diff --git a/ioxide.tls/ioxide.tls.csproj b/ioxide.tls/ioxide.tls.csproj index c90d0dd..e8c58db 100644 --- a/ioxide.tls/ioxide.tls.csproj +++ b/ioxide.tls/ioxide.tls.csproj @@ -1,14 +1,14 @@ - net10.0 + net11.0 enable enable true ioxide.tls ioxide.tls - 0.0.6 + 0.0.7 MDA2AV TLS for the ioxide io_uring runtime: OpenSSL handshake driven over the ring, then kernel TLS (kTLS) transmit offload - handlers keep writing plaintext through the same connection API. Requires Linux kTLS (tls module) and OpenSSL 3. MIT diff --git a/ioxide/ioxide.csproj b/ioxide/ioxide.csproj index 2516ad1..d506262 100644 --- a/ioxide/ioxide.csproj +++ b/ioxide/ioxide.csproj @@ -1,14 +1,14 @@ - net10.0 + net11.0 enable enable true ioxide ioxide - 0.0.6 + 0.0.7 MDA2AV A shared-nothing io_uring runtime for .NET: one ring per reactor thread, inline completions, zero native dependencies. The engine - reactor, connection, and the IRingHost client seam. MIT