Closed kuromukira closed 3 years ago
Hmm. I made it pass GitHub Actions when I added a side-by-side dotnet sdk
on: push
name: dotnet-ci
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET Core SDK 3.1.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
- name: Setup .NET Core SDK 5.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Build
working-directory: ./functions/
run: dotnet build
Closing this as I have read that Azure Functions does not support .NET5.0 yet.
I tried migrating my .NET Core 3.1 Azure Functions to .NET 5.0. When running GitHub actions, I'm getting this error
I think this should be getting the runtime version for .NET 5.0 and not 3.1. Right?