Peter Street

Results 15 comments of Peter Street

I've been having the e398 error, and tried both plugins. Neither worked for me, I still get the e398 error. Happy to provide any information I can; if you want...

Thanks for that — I'll have a look and see what I can get today. Been a bit busy so haven't had chance to get onto my gaming PC (Joys...

Thanks for the quick response! I see what you mean - I can provide an `IRichTextBoxProvider` instantiation within the DI environment which then gets consumed by the sink... All I...

Been looking through this - might take me a while to put a PR together for this; got pulled onto some things at work which means personal projects are slipped...

If I'm understanding you right, you basically made a global static singleton RichTextBox reference that's outside any DI framework? That's not Dependency Injection, that's a global variable. Which, if you're...

I've come to a solution, but I don't like it. I've worked out the following: ```csharp StandardPollyTimeoutPolicy = Policy .HandleResult(r => { if (r is not WebCallResult webCallResult) { return...

Sadly, I've found no better way of doing this - but I've also moved on from this project, so it's become less of an issue. I can, however, see that...

I can provide a valid (at least, as far as my testing goes) reason for a SetupSequence.Returns(Func resultFunc) - I'm mocking a time handling library (set up as a library...

Ah, thanks @stakx - Still new to TDD and unit testing in general, so I miss some obvious things. Thanks!

Fantastic, thanks for the update @stakx, I'll keep an eye out for the release. I've used your design for now, but that will make it more obvious the intention of...