[release/11.0.1xx-preview3] Copy HotReload dll to intermediate to avoid duplicate identity in multi-client WASM#53664
Merged
lewing merged 2 commits intorelease/11.0.1xx-preview3from Apr 2, 2026
Conversation
The JS module was already copied to $(IntermediateOutputPath)hotreload/ to give each project a unique path (sdk#52816), but the dll was still referenced directly from the shared SDK path. In multi-client hosted Blazor WASM scenarios, both clients reference the same SDK-path dll, which causes ComputeWasmPublishAssets to replace Framework-materialized per-project assets with the shared path, leading to duplicate Identity crashes in ApplyCompressionNegotiation. Copy the dll to intermediate (matching the .js pattern) so each project gets a unique path. This is the same approach @javiercn recommended for the JS module in sdk#52816. Co-authored-by: Copilot <[email protected]>
Ensures dotnet clean removes the intermediate copy. Co-authored-by: Copilot <[email protected]>
lewing
approved these changes
Apr 1, 2026
maraf
approved these changes
Apr 2, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Backport of #53656 to release/11.0.1xx-preview3
/cc @lewing