Richard Webb

Results 407 comments of Richard Webb

Does Serilog.AspNetCore 3.4.0 together with Serilog.Sinks.Debug 2.0.0 (as opposed to version 1.0.1 of the debug sink that the aspnetcore package uses by default) work? (I gave it a quick go...

It was setup error when I was testing, but I think it won't always be the same host as in the config (I mean as in, I run the generator...

That sounds reasonable (I'm not sure if i'm overcomplicating things after spending all together too much time lately on error handling related stuff, it just seems 'unfortunate' when things like...

Seems reasonable to abstract mocking libraries and such away. For comparison, the generator i'm using for C# Rest clients can generate things like ```csharp class ApiClient : IApiClient { public...

Not sure how useful that is, but: Something simple built in to do general cases sounds nice, and nothing there prevents anything more specialised being done if it happens to...

Hi, fwiw, I tried it with the latest version using ```fsharp type ITunesStore = { createAlbum : string*string*string*string*string*string*string -> Async } ``` and ```fsharp let exampleInput = ("A", "B", "C",...

> > > We could add an additional text field in the generated docs to specify the authorization header or cookie. Maybe that could work 🤔 fwiw, that's sort of...

On a semi related note, I tried to get my local build marked as deterministic as well, but didn't get it to work (that may or may not be down...

Yes, I have that approach working seperately (with a pattern of TRequest -> Async), I just wasn't sure if this approach was supposed to work or not Thanks