Deploying .NET Core 3.0 API to Azure Web App using Release Pipeline
问题 I'm attempting to upgrade my API from .NET Core 2.2 to 3.0, but I cannot get the Azure Web App to actually run the application using 3.0. My build pipeline configuration: trigger: - master pool: vmImage: 'ubuntu-latest' variables: buildConfiguration: 'Release' steps: - task: UseDotNet@2 displayName: 'Use .NET Core 3' inputs: version: 3.x - script: dotnet tool install --global dotnet-ef - script: dotnet build --configuration $(buildConfiguration) displayName: 'dotnet build $(buildConfiguration