Tom Longhurst

Results 272 comments of Tom Longhurst

I take it you're using the preview version of VS and have enabled testing server mode in the preview settings?

@Xen0byte that attached solution works fine for me. Maybe try checking your VS is up to date? ![image](https://github.com/user-attachments/assets/1859bdf7-8211-4cef-b7c2-554d5273fb6a)

> Hmm ... interesting. I use the preview distribution as my main IDE, so maybe that's the cause of the problem. I'll install the stable distribution and give it a...

Brilliant, glad you got it working! Might have just been VS update issues since this is still preview I'm sure there's some stuff to iron out still

Did the analyzer kick in?

Hmm I'll need to check then. There should be an analyzer flagging mixing of and+or..for the reason you mentioned, it can be confusing how the logic will evaluate. So the...

Analyzer showing for me fine: ![image](https://github.com/user-attachments/assets/ecdebfe9-1e0b-4383-9d59-e5b8ee44f821)

Probably throwing would be better, as: ```csharp await Assert.That(sut) .Contains('A') .And.Contains('B') .Or .Contains('C'); ``` ```csharp await Assert.That(sut) .Contains('A') .And .Contains('B') .Or.Contains('C'); ``` Both are the exact same code, but due...

Would you be able to raise this on Jetbrains as a rider issue?

Annoying that F# doesn't pick up things as nicely!