| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 | <Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <TargetFrameworks>net48;net8.0;net6.0</TargetFrameworks>    <!--      CA1510: Use ArgumentNullException.ThrowIfNull - not available on .NET 4.8      CA1822: Make member static. Not necessary for test code.      CA1861: Extract constant arrays to 'static readonly' fields. With these tests we generally prioritize readability over performance.    -->    <NoWarn>$(NoWarn);CS0618;CS8603;CS8625;CA1510;CA1822;CA1861</NoWarn>  </PropertyGroup>  <ItemGroup>    <Content Include="xunit.runner.json">      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>    </Content>  </ItemGroup>  <ItemGroup>    <ProjectReference Include="..\System.Interactive.Async.Providers\System.Interactive.Async.Providers.csproj" />    <ProjectReference Include="..\System.Linq.Async\System.Linq.Async.csproj" />  </ItemGroup>  <ItemGroup>    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />    <PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />    <PackageReference Include="FluentAssertions" Version="6.4.0" />    <PackageReference Include="xunit" Version="2.4.1" />  </ItemGroup>  <ItemGroup>    <Compile Include="..\System.Linq.Async.Tests\ValueTaskHelpers.cs" />  </ItemGroup>  <ItemGroup>    <None Update="AsyncQueryableExTests.Generated.tt">      <LastGenOutput>AsyncQueryableExTests.Generated.cs</LastGenOutput>      <Generator>TextTemplatingFileGenerator</Generator>    </None>    <None Update="AsyncQueryableTests.Generated.tt" Generator="TextTemplatingFileGenerator" LastGenOutput="AsyncQueryableTests.Generated.cs" />  </ItemGroup>  <ItemGroup>    <Compile Update="AsyncQueryableExTests.Generated.cs">      <DesignTime>True</DesignTime>      <AutoGen>True</AutoGen>      <DependentUpon>AsyncQueryableExTests.Generated.tt</DependentUpon>    </Compile>    <Compile Update="AsyncQueryableTests.Generated.cs">      <DesignTime>True</DesignTime>      <AutoGen>True</AutoGen>      <DependentUpon>AsyncQueryableTests.Generated.tt</DependentUpon>    </Compile>  </ItemGroup></Project>
 |