mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-03 21:25:13 +00:00
Not work with .net 8.0 blazor web project #1006
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @mafei1982 on GitHub (Nov 14, 2025).
0.1.0
Steps to Reproduce:
@FlorianRappl commented on GitHub (Nov 14, 2025):
I got it working pretty much out of the box. There is just two things:
I think we can improve (1) to the point that there is a property "AllowBlazor" or "IsBlazorProcess" (or similar). When this property is set we introduce a preload script that will set
processtoundefined, leading to Blazor as it should.For (2) I am still looking why exactly we run into this and what we can do to improve it. Will be also coming in.
@FlorianRappl commented on GitHub (Nov 14, 2025):
Yeah I can make (2) also work like (1) - reason was that jQuery (which is part of
browserLink) has a check to detect if its running in a CJS system. Asmoduleis also defined by Electron this was not working. Essentially same fix ->global.process = undefined; global.module = undefined.@FlorianRappl commented on GitHub (Nov 14, 2025):
Rolled out 0.2.0-pre.200:
Release ETA is Monday.