I have my ASP.net core API targeting Dot net 5.0. Is anyone successful in deploying a dotnet 5 application on Amazon Linux platform using CI/CD approach with AWS CodeBuild?
I tried to use dotnet latest which resolve to version 3.1. And, when I use the 5.0 in buildspec.yml, it errors. As per the blog, it seems to be supported. But not sure how to install using buildspec.yml.
phases:
install:
runtime-versions:
dotnet: 5.0
