How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

AWS Codebuild - Install .NET 9 SDK

calendar_today November 20, 2025 person Felipe Esteves domain amazon-codebuild

.NET 9 runtime isn’t available (yet) for AWS Codebuild. Even after installing the SDK using the following commands, my build would still get .NET 6 instead: version: 0.2 env: shell: bash phases: install: commands: - curl -L https://dot.net/v1/dotnet-install.sh -o dotnet-install.sh - chmod +x ./dotnet-install.sh - ./dotnet-install.sh –channel 9.0 –install-dir /root/.dotnet/ - dotnet –version - dotnet –info

open_in_new Read original post