ig-sinicyn
ig-sinicyn
Example: ```cs public async IAsyncEnumerable EnumerateAsync() { await TaskEx.Yield(); yield return "Hello!"; } ``` produces `CS1729 'ValueTask' does not contain a constructor that takes 2 arguments` error. The reason is,...
The IAsyncEnumerable interface [is not shipped](https://learn.microsoft.com/en-us/dotnet/api/system.collections.generic.iasyncenumerable-1?view=net-7.0#applies-to) as a part of net48 (see the "Applies to" section). Theraot.Core does include its own copy but it is excluded for the `net48` target,...
If the project references both Theraot.Core and Microsoft.Bcl.AsyncInterfaces packages there's `Error CS0433 The type 'IAsyncEnumerable' exists in both assemblies` error when using the `IAsyncEnumerable` type **NB1:** the reference may be...
Hi! It will be nice to have a friendly attribute for `[Trait("Category","Manual")]` The manual category is similar to the "local test" one. The difference is, manual tests are often used...
I have two assseblies, one produced by c# compiler and one created by Reflection.Emit. The code, type and member names do match but JustAssembly shows them as two different assemblies....
There is a warning when referencing the NCuid package from a net core project: ``` NU1701 Package 'NCuid 1.0.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8' instead of...
FirebirdSql.Data.FirebirdClient v10.3.1. I have a Dapper query that attempts to insert a DateTimeOffset value but fails with ArgumentException: "Invalid data type: 27.". Simplified version: ```cs var connectionString = "..."; var...
Subj:) Real-world scenario: I have some values that are determined during analysis pass and I want to include them into summary table. Current implementation initializes the table immediately after benchmark...