Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
/p:Configuration must use "Release" instead of "release" (dotnet#40816)
I am not very familiar with Unix so I was not aware why I was having below error: ``` /home/jozky/runtime/.dotnet/sdk/5.0.100-preview.8.20362.3/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk.FrameworkReferenceResolution.targets(379,5): error NETSDK1112: The runtime pack for Microsoft.NETCore.App.Runtime.browser-wasm was not downloaded. Try running a NuGet restore with the RuntimeIdentifier 'browser-wasm'. [/home/jozky/runtime/src/libraries/System.IO.FileSystem/tests/System.IO.FileSystem.Tests.csproj] ``` I tried running `dotnet restore --runtime browser-wasm` as suggested by the error but that didn't help. The correct thing to do was to pass `Release` (with upper case R) to `Configuration` parameter. cc @safern
- Loading branch information