Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
6e555e8
Add HotReloadAgent.WebAssembly.Browser
maraf Jul 16, 2025
250d4a7
Update references
maraf Jul 16, 2025
7b2bd56
Implicit reference
maraf Jul 16, 2025
791a16d
Update src/BuiltInTools/HotReloadAgent.WebAssembly.Browser/WebAssembl…
maraf Jul 16, 2025
98e0db0
Ship the package
maraf Jul 16, 2025
7f74fb1
Feedback
maraf Jul 17, 2025
662b494
Disable HotReload in tests, because we don't have the HotReload packa…
maraf Jul 17, 2025
4ce0644
Disable HotReload in tests, because we don't have the HotReload packa…
maraf Jul 17, 2025
0cc2cfe
Flip the check for configuration
maraf Jul 17, 2025
b15a02e
IsImplicitlyDefined and PrivateAssets attributes on the PackageReference
maraf Jul 17, 2025
93abbd3
Fix usage outside of Blazor - need to set _internal object as well
maraf Jul 17, 2025
2e3934e
Remove PrivateAssets becase we need the script to propagate to the re…
maraf Jul 17, 2025
c799096
Disable HotReload in tests, because we don't have the HotReload packa…
maraf Jul 17, 2025
acbf36c
Include shipping packages in HelixCorrelationPayload
maraf Jul 17, 2025
c724500
Revert disable HotReload in tests
maraf Jul 17, 2025
f503e27
Update baselines
maraf Jul 18, 2025
6c93ba8
Update baselines
maraf Jul 18, 2025
d9b03a4
The newest runtime didn't land yet. Revert back to previous boot sche…
maraf Jul 18, 2025
141a57c
Update baselines
maraf Jul 18, 2025
6edb0a0
Update baselines
maraf Jul 18, 2025
7ec9a3f
Exclude modules manifest
maraf Jul 18, 2025
50f73fa
Disable HotReload in SWA integration tests, because of fingerprinted …
maraf Jul 18, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
IsImplicitlyDefined and PrivateAssets attributes on the PackageReference
  • Loading branch information
maraf committed Jul 17, 2025
commit b15a02e39ba449d232302f983b4007a4bdee5423
2 changes: 1 addition & 1 deletion src/WasmSdk/Sdk/Sdk.targets
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Copyright (c) .NET Foundation. All rights reserved.
</PropertyGroup>
<Target Name="_ImplicitlyReferenceHotReload" BeforeTargets="ProcessFrameworkReferences">
<ItemGroup Condition="'$(_WasmEnableHotReload)' == 'true'">
<PackageReference Include="Microsoft.DotNet.HotReload.WebAssembly.Browser" Version="$(NETCoreSdkVersion)" />
<PackageReference Include="Microsoft.DotNet.HotReload.WebAssembly.Browser" Version="$(NETCoreSdkVersion)" IsImplicitlyDefined="true" PrivateAssets="All" />
</ItemGroup>
</Target>

Expand Down
Loading