You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After Extensions removed the Mono.WebAssembly.Interop package yesterday, Maestro silently failed to update our dependencies from EFCore, because we still listed a dependency on that package despite it not being produced (thanks @riarenas for helping figure this out). I deleted that package from our version files & ran darc update-dependencies locally. Here's the issue tracking making these types of failures less difficult to notice/track down: dotnet/arcade#1387
CC @dougbu@JunTaoLuo - after this I can validate #19161 (since this updates System.IO.Pipelines to 4.7.1)
/Users/runner/runners/2.164.8/work/1/s/src/Components/Blazor/testassets/HostedInAspNet.Server/HostedInAspNet.Server.csproj : warning NU1602: Microsoft.AspNetCore.Blazor does not provide an inclusive lower bound for dependency Mono.WebAssembly.Interop. An approximate best match of Mono.WebAssembly.Interop 0.5.0 was resolved.
Services/WebAssemblyJSRuntime.cs(9,50): error CS0012: The type 'JSInProcessRuntimeBase' is defined in an assembly that is not referenced. You must add a reference to assembly 'Microsoft.JSInterop, Version=0.5.0.0, Culture=neutral, PublicKeyToken=null'. [/Users/runner/runners/2.164.8/work/1/s/src/Components/Blazor/Blazor/src/Microsoft.AspNetCore.Blazor.csproj]
@pranavkm should I instead have pinned the dependency on Mono.WebAssembly.Interop?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
After Extensions removed the
Mono.WebAssembly.Interoppackage yesterday, Maestro silently failed to update our dependencies from EFCore, because we still listed a dependency on that package despite it not being produced (thanks @riarenas for helping figure this out). I deleted that package from our version files & randarc update-dependencieslocally. Here's the issue tracking making these types of failures less difficult to notice/track down: dotnet/arcade#1387CC @dougbu @JunTaoLuo - after this I can validate #19161 (since this updates
System.IO.Pipelinesto4.7.1)