79818939

Date: 2025-11-13 13:45:13
Score: 1
Natty:
Report link

I managed to get it working by excluding `Microsoft.Bcl.Memory` from the project:

<ItemGroup>
    <PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0" />
    <PackageReference Include="Microsoft.Bcl.Memory" Version="10.0.0">
        <ExcludeAssets>all</ExcludeAssets>
    </PackageReference>
</ItemGroup>

Don't know why I need to do this though.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Weifen Luo