Eilon Lipton

Results 487 comments of Eilon Lipton
trafficstars

Very weird. I feel like I've seen it before but I can't find any previous bug. Do you have a repro for this project? Or any info on the project...

Oh that's interesting. If there's something we need to take into account in MBB to make this work I'd love to know.

Hi @dMiracleMan I haven't seen an issue like that in quite a while. Can you show what your app's startup code looks like in `App.cs`? Does it look sort of...

@arivera12 very interesting. I wouldn't have thought that the changes you mention would make much difference. If there's any other info you can share that might help us narrow down...

Yes this is quite odd. I can't think of many differences between debug vs. release and also simulator vs. physical device. I don't think there's any code in Mobile Blazor...

I'm keeping this issue open because there is presumably some issue here, but I don't have any immediate action planned for this.

Yes, thank you @arivera12 , I hope your notes help anyone else who runs into this!

Oops @SteveSandersonMS I forgot to tag you on this! 😁 If you could take a quick look for a sanity check, I will re-apply these changes to the big PR...

You can set the environment in `App.cs` like this: ```c# using Microsoft.Extensions.Hosting; ... var hostBuilder = MobileBlazorBindingsHost.CreateDefaultBuilder() .UseEnvironment("staging123") // Set this to whatever you want .ConfigureServices((hostContext, services) => { ......

Oh I think I see. You're saying that even though you can set the environment name with this API, it happens too late for some built-in features done by the...