I am using Blazor with .net 8 in Auto render mode. When the component is rendered on the server, entering e.g. "3.5" displays 3.5 correctly. However, when the component is rendered via WASM, it is always displayed as 3,5 (i.e., German).
This does not happen when starting the application from Visual Studio.
Am I missing any additional settings for the Client side project?
In Blazor Server i use the following code in Program.cs, so i dont have to define on each component the Culture.
I dont know if this can help, give it a try.