Stuart Lang

Results 145 comments of Stuart Lang

Here's the example, again change the resource name or service name from `"myapp"` to anything else and it works, otherwise things become a bit broken: https://github.com/slang25/aspire-issue/ I can work around...

I'm also see this issue crop up when I see peoples demos and blogs, take a look at the screenshots here as an example: https://nikiforovall.github.io/dotnet/opentelemtry/2024/06/07/test-instrumentation-with-otel-aspire.html

The title alone makes sense, I was wondering if you had hit a scenario where this had caught you out? Edit: I guess at the very least it makes the...

Got it, so it's something we wanted to do but were queuing it up for the next major version bump 👍

Don't get too excited, but I _think_ I've got everything upgraded here and it seems to be working 🙂 I'll tidy it up and create a PR later (probably tomorrow)....

So it looks like comparing `Type`s with `ShouldBeEquivalentTo` doesn't currently work because it walks through all of the properties, and the [DeclaringMethod](https://learn.microsoft.com/en-gb/dotnet/api/system.type.declaringmethod?view=net-9.0) property will throw for non-generic types. I'll have...

For those curious, FluentAssertions uses different strategies for determining equality, and for `Type` it just uses `Equals` rather than comparing members. [See here](https://github.com/fluentassertions/fluentassertions/blob/7e654139fc569d975e711729cf71568e7d878c29/Src/FluentAssertions/Equivalency/EqualityStrategyProvider.cs#L47-L73). > I'd fixed it myself but Shouldly...

I've had a little test with Buildalyzer and [StrykerBugRepro](https://github.com/mrlacey/StrykerBugRepro), it looks like it will build with Buildalyzer, but _only_ if the `net9.0` tfm is specified with the `TargetFramework` property. I'm...

So to break this into actionable things: * When Stryker detects a multi-TFM project with a single TFM test project, it should use the test project TFM (passing that to...