From 0d9929a61a50f996837739feec1a07ca36f6f103 Mon Sep 17 00:00:00 2001 From: Diogo Martins Date: Tue, 23 Jun 2026 11:15:38 +0100 Subject: [PATCH] support net 10, bump 0.0.17 --- Tests/ioxide.e2e.csproj | 2 +- ioxide.Kestrel/ioxide.Kestrel.csproj | 6 +++--- ioxide.file/ioxide.file.csproj | 2 +- ioxide.pg/ioxide.pg.csproj | 4 ++-- ioxide.redis/ioxide.redis.csproj | 4 ++-- ioxide.tls/ioxide.tls.csproj | 4 ++-- ioxide/ioxide.csproj | 4 ++-- 7 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Tests/ioxide.e2e.csproj b/Tests/ioxide.e2e.csproj index e365984..a4b2d95 100644 --- a/Tests/ioxide.e2e.csproj +++ b/Tests/ioxide.e2e.csproj @@ -11,7 +11,7 @@ Exe - net11.0 + net11.0 enable enable true diff --git a/ioxide.Kestrel/ioxide.Kestrel.csproj b/ioxide.Kestrel/ioxide.Kestrel.csproj index 0a0a3d3..b35b005 100644 --- a/ioxide.Kestrel/ioxide.Kestrel.csproj +++ b/ioxide.Kestrel/ioxide.Kestrel.csproj @@ -1,14 +1,14 @@ - + - net11.0 + net10.0;net11.0 enable enable true ioxide.Kestrel ioxide.Kestrel - 0.0.16 + 0.0.17 MDA2AV ASP.NET Core Kestrel transport backed by the ioxide io_uring runtime: one reactor (ring) per core, SO_REUSEPORT load-balanced, with Kestrel's HTTP request loop pinned to the reactor thread. Drop-in via UseIoxide(). MIT diff --git a/ioxide.file/ioxide.file.csproj b/ioxide.file/ioxide.file.csproj index 3da9bca..45986b2 100644 --- a/ioxide.file/ioxide.file.csproj +++ b/ioxide.file/ioxide.file.csproj @@ -8,7 +8,7 @@ ioxide.file ioxide.file - 0.0.16 + 0.0.17 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 fa47409..7b68bf5 100644 --- a/ioxide.pg/ioxide.pg.csproj +++ b/ioxide.pg/ioxide.pg.csproj @@ -1,14 +1,14 @@ - net11.0 + net10.0;net11.0 enable enable true ioxide.pg ioxide.pg - 0.0.16 + 0.0.17 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 284adca..1d9a8b3 100644 --- a/ioxide.redis/ioxide.redis.csproj +++ b/ioxide.redis/ioxide.redis.csproj @@ -1,14 +1,14 @@ - net11.0 + net10.0;net11.0 enable enable true ioxide.redis ioxide.redis - 0.0.16 + 0.0.17 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 e26b836..f80f26c 100644 --- a/ioxide.tls/ioxide.tls.csproj +++ b/ioxide.tls/ioxide.tls.csproj @@ -1,14 +1,14 @@ - net11.0 + net10.0;net11.0 enable enable true ioxide.tls ioxide.tls - 0.0.16 + 0.0.17 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 7d9d674..d340138 100644 --- a/ioxide/ioxide.csproj +++ b/ioxide/ioxide.csproj @@ -1,14 +1,14 @@ - net11.0 + net10.0;net11.0 enable enable true ioxide ioxide - 0.0.16 + 0.0.17 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