| 123456789101112131415161718192021222324252627282930 | <Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <TargetFrameworks>netcoreapp1.1;net461</TargetFrameworks>    <NoWarn>$(NoWarn);CS0618</NoWarn>  </PropertyGroup>  <ItemGroup>    <Content Include="xunit.runner.json">      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>    </Content>  </ItemGroup>  <ItemGroup>    <ProjectReference Include="..\System.Linq.Async\System.Linq.Async.csproj" />    <ProjectReference Include="..\System.Linq.Async.Queryable\System.Linq.Async.Queryable.csproj" />  </ItemGroup>  <ItemGroup>    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />    <PackageReference Include="xunit.runner.visualstudio" Version="2.3.0-beta4-build3742 " />    <PackageReference Include="FluentAssertions" Version="4.19.2 " />    <PackageReference Include="xunit" Version="2.3.0-beta3-build3705" />    <DotNetCliToolReference Include="dotnet-xunit" Version="2.3.0-beta4-build3742 " />  </ItemGroup></Project>
 |