Brett

Results 19 comments of Brett

Hi @chrissainty I was using `6.0.1` but upgraded to `7.0.0-preiew.4` as you suggested. Unfortunately, it hasn't solved the issue. Interestingly enough, this 'hack' results in passing test. ```c# [Fact] public...

All good! One thing that would be nice (but much less common use case) is for multi-tenant support. I'm thinking about a workflow where the Blazor client (after asking for...

Solved using `ExpectedException` attribute in the `Microsoft.VisualStudio.TestTools.UnitTesting` namespace ```c# [Fact] [ExpectedException(typeof(ArgumentException))] public void Test() { _modalService.Show(...) } ```

I also think I need this feature for my multi-tenant application. I'm using different subdomains for my clients and basically I want to use the "origin" header to switch authentication...

I'm not sure of the implications, but maybe a better option might be a "delegate route strategy" which I think is the idea here #1236 - I'm thinking of the...

Yeah that's what I did for my local MongoDB instance for testing. I guess leave it as it is and maybe add a comment in the docs that you'll need...

Hi @StefH - I'm having some trouble using myget. Sorry about this but would you mind publishing to nuget? otherwise please could you point me to a online c# ide...