Azure CI pipeline for Blazor .NET 5 doesn't work
问题 I have an existing Azure CI pipeline for a WebAssembly Blazor application, that works with .NET Core 3.1. I upgraded the application to use .NET 5 RC, and the pipeline doesn't work anymore. Following suggestions, I removed the NuGet task, and I inserted two new tasks: - task: UseDotNet@2 displayName: 'Use .NET Core sdk 5.0.100-rc.1.20452.10' inputs: version: '5.0.100-rc.1.20452.10' includePreviewVersions: true - task: DotNetCoreCLI@2 displayName: 'dotnet restore' inputs: command: restore