Enable ICU in blazor
See original GitHub issueSince the blazor platform code calls directly into the runtime rather than using the normal initialization code it doesn’t have the logic to load the icudt.dat file into the runtime that is required to enable icu. It will need to copy icudt.dat
from the runtime pack and insert it into memory using offset = this.mono_wasm_load_bytes_into_heap (bytes)
and this.mono_wasm_load_icu_data (offset)
and only do the logic in https://github.com/dotnet/aspnetcore/pull/24163 if that file doesn’t exist
Issue Analytics
- State:
- Created 3 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
ASP.NET Core Blazor globalization and localization
Blazor WebAssembly uses a reduced globalization API and set of built-in International Components for Unicode (ICU) locales. For more ...
Read more >Reducing Blazor WASM size by providing custom ICU data
In this post, I describe how to build a custom ICU data files and use them in an ASP.NET Blazor WASM application to...
Read more >IcuBlazor | Blazor Unit Testing
You can run your Blazor app (with Tests) as a frontend-only WASM app by setting EnableServer=false . However, IcuBlazor will disable some functions....
Read more >IcuBlazor | Blazor Unit Testing
IcuBlazor has a simple solution. Run End-To-End tests with the UI Automation API. Create tests that click buttons, enter text, select items, and...
Read more >Blazor WASM publish on IIS => memory access out of ...
But when I publish the blazor.server project to the IIS-Server in our network I get this message when I try to access the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@pranavkm @mkArtakMSFT merged in preview8 now
https://github.com/dotnet/runtime/pull/39739