From 82a7916cbec284a34e48026c4cc4a3b64f20a501 Mon Sep 17 00:00:00 2001 From: ivanauth Date: Wed, 8 Jul 2026 20:44:41 -0400 Subject: [PATCH] fix: replace deprecated Grpc.Core package with Grpc.Core.Api The Grpc.Core native runtime is in maintenance mode and deprecated in favor of grpc-dotnet. Nothing in this library uses the native runtime: the generated stubs and credential helpers only need the Grpc.Core.Api abstractions, and all channels are created through Grpc.Net.Client. Swap the package reference accordingly and drop the redundant Grpc.Core reference from the bulk-import example, which already gets its gRPC dependencies transitively from the library. Signed-off-by: ivanauth --- examples/bulk-import/BulkImport/BulkImport.csproj | 4 ---- src/Authzed.Net/Authzed.Net.csproj | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/examples/bulk-import/BulkImport/BulkImport.csproj b/examples/bulk-import/BulkImport/BulkImport.csproj index 57c8282..3b1583b 100644 --- a/examples/bulk-import/BulkImport/BulkImport.csproj +++ b/examples/bulk-import/BulkImport/BulkImport.csproj @@ -4,10 +4,6 @@ - - - - Exe net8.0 diff --git a/src/Authzed.Net/Authzed.Net.csproj b/src/Authzed.Net/Authzed.Net.csproj index d42c223..f7fd4f3 100644 --- a/src/Authzed.Net/Authzed.Net.csproj +++ b/src/Authzed.Net/Authzed.Net.csproj @@ -31,7 +31,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive