-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HotReload In BlazorWebAssembly Dont Work Correctly #59813
Comments
@shabanelmogy-os thanks for contacting us. Can you provide a concrete description of what exactly is not working? otherwise is impossible for us to take any action. |
@shabanelmogy-os It would help if you could include the following specific details:
@phil-allen-msft FYI |
+1, just updated to VS.NET 17.12.4, it seems the .net 9 was added with an update, but the web assembly project hot reload stopped working. rebuild (ctrl+R tries to open the browser all the time), the console shows that the hot reload was applied, and the application crashed in the browser. web assemble, not hosted project Update: rollback to VS.Net 17.11.5 fixed all issues |
I just upgraded one of our projects to .NET 9 and the blazor wasm hot reload just does not work well anymore. I use dotnet watch from cli on a Mac. Here are some error logs from my latest run. I was not doing anything fancy, just changing css classes. Also dotnet watch outputs 100's of files in the log for every change, maybe that it part of the issue. ![]() ![]() Reddit thread as well. For now I am going to stick with the Let me know if you want anything specific and I can try to pull it together. Thanks! |
@rabberbock Thanks for sharing this additional information. @lewing Can you take a look and see if this is something we need to investigate on the runtime side? |
my case the project is still .net 8, dot net watch, when you rebuild the first time, it works till the first hot reload, during the hot reload I see that the changed file was removed and added (cli messages in the console), and the second time it starts warning that we have unknown component on the page & need to add a namespace, the hot reload in console still a success, browser app crashed |
cc @tmat |
This is tracked by dotnet/sdk#46175 |
@rabberbock Note, the logs will contain pieces of your source code. You can use VS Feedback if you prefer not sharing the code publicly. |
this is also became "as usual" console:
browser:
this does not exist in real live - essContactListAsync refresh does not help, just rebuild & refresh .NET SDK: Runtime Environment: .NET workloads installed: [maui-windows] [maccatalyst] [ios] [wasm-tools-net6] [android] Host: .NET SDKs installed: .NET runtimes installed: Other architectures found: Environment variables: global.json file: Learn more: Download .NET: |
@ghostinside |
@tmat i think this the same hot reload issue, that is why I posted it here |
@tmat Will try to get to this over the weekend. |
@tmat Can you please point me to where I should upload the output to the VS Feedback site. Also, I noticed that the the browser that gets launched when Blazor starts up has pretty good hot reloading, but once I open a new browser or reload the page it starts breaking. |
@rabberbock Reproduce the issue in Visual Studio using the requested settings and then go to Help > Send Feedback > Report a Problem to create a feedback ticket. You can then attach additional information to the feedback ticket as needed. |
@tmat I uploaded the information to VS Feedback, so let me know if you are able to see it on your end and if you need anything else from me. Thanks! https://developercommunity.visualstudio.com/t/Blazor-Hot-Reload-Issues-NET-9/10844159 |
@rabberbock Thanks for the logs, will take a look. Would you mind also uploading the verbose output of dotnet-watch? What version of SDK do you use? Have you tried the latest version (9.0.200)? |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@brettzook Would it be possible to share project where the issue reproduces? You can share via https://developercommunity.visualstudio.com/dotnet if you prefer not to share publicly. |
I carved out a subset of the real project that will run standalone and can be shared, but unfortunately it doesn't exhibit the problem. I'll take some more time to see if I can add enough back into it so that the problem is replicated. |
@tmat I have a stripped-down project where the issue happens reliably. It happens to make use of DevExpress Blazor nuget packages which are licensed, though those packages aren't directly related to the issue as far as I can tell. Do you have a means to restore the packages on your side (maybe trial license?) or do I need to remove them before sharing? |
@brettzook interesting, we use Telerik |
@brettzook Removing the packages would help, if you don't mind. Thanks! |
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
@tmat I'm working on hacking out all the references to DevExpress so I can remove the nuget package references. My app has about 20 Pages and about as many subcomponents, that nearly all rely on a DevExpress component, so after removing those there's next to nothing left. What I'm finding is that the success rate of Hot Reload seems to be tied to the number of Pages/components in the app. For example, if I delete all my pages except one (and leaving all DevExpress stuff in place), Hot Reload worked on the first try and continued to work for multiple changes after that. But as soon as I add the rest of the 20 pages back, Hot Reload fails on the very first try. When I removed 10 of my pages, Hot Reload worked for 2-3 changes then started failing. It's not clear from that if the issue is due to the use of DevExpress components, or just having a lot of any type of component, so I'm creating a bunch of dummy Pages using only out-of-box Blazor controls to take the place of my custom code. My end goal is still to provide you with a non-DevExpress dependent project you can run and reproduce the error. |
Thanks for confirming. I'll hide our messages to avoid getting in the way of the main bug. |
@333fred Shouldn't a build error be reported? It's not ideal that we only fail in Hot Reload. |
Much appreciated! |
|
'crit: Microsoft.AspNetCore.Components.WebAssembly.Rendering.WebAssemblyRenderer[100]
|
@tmat I still haven't been able to replicate the issue in my test project, and there's no clear path on how to get any closer. However, this morning on a whim I decided to try hot reload again in my real project (I had abandoned it by running I did update these packages from 9.0.1 to 9.0.2 prior to that:
However, I reverted them to 9.0.1 and it still worked. So, I have no idea what made the difference. My confidence level is very low that it will continue to work, but I currently don't have an issue to diagnose or pursue. Prior to the issue going away, the behavior I saw was similar to what ghostinside reported, where the assembly names it says it can't find appear to start with fragments of valid code, like 'dGrid>d__63, Version=8.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60' and 'uctDetails>b__0, Version=8.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60' |
@brettzook If it still reproes in the project with DevExpress dependencies and are ok sharing it, I can try to look into it. |
@tmat Hot Reload worked smoothly for the last two days, but this morning it started acting up again. So, I went back to my Solution where I can replicate the problem consistently, and spent more time stripping irrelevant things out. I've shared that in a zip file via https://developercommunity.visualstudio.com/dotnet. Inside the zip is a Word document with step-by-step instructions, including how to reference the DevExpress packages. I've tried to make it as painless as possible so you can get right at the issue. See https://developercommunity.visualstudio.com/t/Hot-Reload-error-for-Blazor-app-WASM/10855677 |
@brettzook Thanks! |
It seems the fix hasn't been released yet. It is in 9.0.3: |
@brettzook I can repro now. Thanks for great repro instructions. |
This issue has been automatically marked as stale because it has been marked as requiring author feedback but has not had any activity for 4 days. It will be closed if no further activity occurs within 3 days of this comment. If it is closed, feel free to comment when you are able to provide the additional information and we will re-investigate. See our Issue Management Policies for more information. |
Can the |
I believe dotnet/roslyn#77340 (comment) is related. |
Is there an existing issue for this?
Describe the bug
i use blazor webassembly standalone in .net 9 hotreload not work and this make development very difficult and waste time
please solve this problem because most of blazor prgrammer might migrate to another framework
if anyone has production app it will be big problem
Expected Behavior
No response
Steps To Reproduce
No response
Exceptions (if any)
No response
.NET Version
.net 9
Anything else?
No response
The text was updated successfully, but these errors were encountered: