Taylor Southwick

Results 199 comments of Taylor Southwick

Can you share a code snippet of what you were doing and describe the scenario?

Correct - it should just work where possible. I'll leave this open to track doc updates. Also, looks like someone found a bug in it with #1636 in case it...

Some of the APIs have been requested in the dotnet/systemweb-adapters project and it would be great to enable them here (not sure how to do some without access to the...

I think the main driving force for the IWebHostEnvironment change was that it should be available before IServiceProvider is available. One of the example scenarios is using one of the...

Yes, on the [branch I linked](https://github.com/dotnet/aspnetcore/compare/main...twsouthwick:aspnetcore:iis_app_feature#diff-b1296d46891a7b8cc4b21c41d22fdde1a242dc22052b1b1be00007f8397ad2f8) I registered a configure callback, and it's available for use in this pattern (which covers the scenarios described originally): ```csharp using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Server.IIS;...

How about defaulting to the current process name? That way it will be whatever was invoked. I got it working by the following: ```csharp using (var current = System.Diagnostics.Process.GetCurrentProcess()) {...

Thanks - I ended up canceling that entry in the reoccurring event so it didn't really matter. Hopefully ical/rrule get fixed to handle it correctly - for me it was...

I'd rather not have to copy to a memory stream first - let me take a look at the repro. Thanks for bringing it to our attention

Ok here's what I'm putting in for a v3.0.1 release: - Check if stream is seekable to enable malformed uri handling - Throw same exception as v2.x if malformed URI...