jcoolsen

Results 5 comments of jcoolsen

Thank you @stevebeauge . This is also the solution/workaround (https://github.com/microsoft/fluentui/issues/32253#issuecomment-2283158405) that https://github.com/emmayjiang suggested in the linked issue and we have been using it since August 2024. And yes, we also...

For me, I had a slightly different approach, using a ref to walk up the dom tree and applying max-width: fit-content. I guess it all depends on your circumstances. For...

We are moving to .NET 8 because of the end-of-support for .NET 6/7. Switching to isolated model is too large a task for us at the moment. Since this project...

Wow, the referenced issue was deleted just now! That makes no sense to me. Anyway I had it open in another tab and was able to save a copy of...

Our current workaround may be helpful for some of you. ``` internal class SwashbuckleStartup : FunctionsStartup { public override void Configure(IFunctionsHostBuilder builder) { // https://github.com/vitalybibikov/AzureExtensions.Swashbuckle/issues/117 // https://github.com/dotnet/aspnetcore/issues/55692 // builder.AddSwashBuckle(Assembly.GetExecutingAssembly()); AddSwashBuckleCustom(builder,...