Andrew Herrick

Results 34 comments of Andrew Herrick

I'm trying something like you suggested but it's not working: ``` ```

@jeremyVignelles Any thoughts here? This is the sample project I am basing my testing off. How would you get ToolTip to work here: https://github.com/ButchersBoy/DragablzSamplez/blob/master/MahAppsWindowApp/App.xaml

is there anyone that can help with this? i can't build MAUI without it @philliphoff did you find a work around? thanks!

FYI this issue "fixed" itself with the latest Preview package updates for me. still frustrating

has a work around here been found? this is preventing us from running iOS 17 with maestro

@x3haloed Agreed. That's likely the approach I would take. Forms App with a full screen WebView.

@abatishchev digging through the Polly.Extension code I figured out the following equivalent: `HttpPolicyExtensions.HandleTransientHttpError()` ``` Policy .Handle() .OrResult( (HttpResponseMessage response) => { return (int)response.StatusCode >= 500 || response.StatusCode == HttpStatusCode.RequestTimeout; }...

It should just be the exact EmailDemo code. ``` using Microsoft.AspNetCore.Mvc; using Microsoft.Azure.WebJobs; using Microsoft.Azure.WebJobs.Extensions.Http; using System.IO; using System.Threading.Tasks; using WebJobs.Extensions.OpenAI; using WebJobs.Extensions.OpenAI.Search; namespace AiWebJobInProc; public static class EmailPromptDemo {...