From 19e793641c3e66e82cca47f8879881bf8943eadc Mon Sep 17 00:00:00 2001 From: RubenCerna2079 <32799214+RubenCerna2079@users.noreply.github.com> Date: Wed, 16 Sep 2026 11:02:26 -0700 Subject: [PATCH] Add Missing Architecture Versions for Nuget Package (#3815) ## Why make this change? - Solves issue #3811 ## What is this change? This change adds the missing `linux-arm64` and `osx-arm-64` versions to the RID (RuntimeIdentifier) in order to allow us to publish versions of the Nuget package that support those architectures. ## How was this tested? Tested by creating a local nupkg to ensure all of the architectures are built correctly. `dotnet restore .\src\Azure.DataApiBuilder.sln --force` `dotnet pack .\src\Cli\Cli.csproj` image image --- src/Cli/Cli.csproj | 2 +- src/Service/Azure.DataApiBuilder.Service.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Cli/Cli.csproj b/src/Cli/Cli.csproj index 7ae0276a39..98b6151296 100644 --- a/src/Cli/Cli.csproj +++ b/src/Cli/Cli.csproj @@ -10,7 +10,7 @@ dab ./nupkg $(BaseOutputPath)\cli - win-x64;linux-x64;osx-x64 + win-x64;linux-x64;linux-arm64;osx-x64;osx-arm64 Microsoft.DataApiBuilder Microsoft.DataApiBuilder Microsoft diff --git a/src/Service/Azure.DataApiBuilder.Service.csproj b/src/Service/Azure.DataApiBuilder.Service.csproj index a03f9690c0..4c267eedbc 100644 --- a/src/Service/Azure.DataApiBuilder.Service.csproj +++ b/src/Service/Azure.DataApiBuilder.Service.csproj @@ -4,7 +4,7 @@ net10.0 Debug;Release;Docker $(BaseOutputPath)\engine - win-x64;linux-x64;osx-x64 + win-x64;linux-x64;linux-arm64;osx-x64;osx-arm64 true