Nickolay Batov

Results 10 comments of Nickolay Batov

The issue is still there. We use minimal APIs, and this leads to bloating with thousands of operations like "/api/orders/xxxxxxx" instead of single "/api/orders/{id}".

BTW I have tried to use a workaround using `Enrich` from the original post, but it didn't work for me because `Endpoint` is always null. I know that middlewares which...

I've updated the link to sample because it was deleted from the old link.

I've edited the title because the issue is not in ElementName bindings: I have changed the source of a binding to `RelativeSource={RelativeSource FindAncestor, AncestorType=UserControl}` and the problem is still there.

I have this problem too, which results in inconsistencies between `dotnet format` and `resharper`, and I don't know how to fix it. Expected: ```c# await Parallel.ForEachAsync( clientData, new ParallelOptions {...

>We recommend increasing wait_timeout to the appropriate time for your application's needs. It's not always possible. For example, Azure MySQL Single Server has max value of `wait_timeout` of 240.

I'm experiencing the same issue. I'm on Apple Silicon, my coworker with Mac on Intel doesn't have this problem. Here is the detailed log: ``` 2>Target "_ASI_InjectAspectsCore" in file "/Users/stilettk/.nuget/packages/aspectinjector/2.8.3-pre2/buildTransitive/netstandard2.0/AspectInjector.targets"...

> @stilettk do you have Rosetta installed? I didn't explicitly install it, but according to [this](https://apple.stackexchange.com/a/441395), I have it installed.

@pamidur FYI in 2.8.3-pre3 the problem persists Build log ``` 2>Target "_ASI_InjectAspectsCore" in file "/Users/stilettk/.nuget/packages/aspectinjector/2.8.3-pre3/buildTransitive/netstandard2.0/AspectInjector.targets" from project "/Users/stilettk/RiderProjects/loyalty/tests/Dodo.Loyalty.ComponentTests/Dodo.Loyalty.ComponentTests.csproj" (target "InjectAspects" depends on it): Set Property: _ProcessCmd="/Users/stilettk/.nuget/packages/aspectinjector/2.8.3-pre3/buildTransitive/netstandard2.0/../../build/_bin/osx-arm64/AspectInjector" -rf "/Users/stilettk/RiderProjects/loyalty/tests/Dodo.Loyalty.ComponentTests/obj/Debug/net7.0/Dodo.Loyalty.ComponentTests.dll._asi_refs" "/Users/stilettk/RiderProjects/loyalty/tests/Dodo.Loyalty.ComponentTests/obj/Debug/net7.0/Dodo.Loyalty.ComponentTests.dll" Task...

What do you mean by trying https://www.nuget.org/packages/AspectInjector/2.8.3-pre3#supportedframeworks-body-tab? To use `net20` or `netstandard2.0`? Unfortunately, I can't do this in my project because all references require newer versions. `AspectInjector_UseRosetta` helped though. But...