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.
I put both the code snippet from @korchev into my server .csproj and the snippet from @GodzSky into my Program.cs both on client and server and this now causes the RadzenNumerics to use the invariant culture. Thanks.