| 12345678910111213141516171819202122232425262728 | <Project Sdk="Microsoft.NET.Sdk">  <PropertyGroup>    <Description>Interactive Extensions Async Providers Library used to build query providers and express queries over async enumerable sequences.</Description>    <AssemblyTitle>Interactive Extensions - Async Providers Library</AssemblyTitle>    <TargetFrameworks>net45;net46;netstandard2.0;netcoreapp3.0</TargetFrameworks>    <PackageTags>Ix;Interactive;Extensions;Enumerable;Asynchronous</PackageTags>  </PropertyGroup>  <ItemGroup>    <EmbeddedResource Include="Properties\System.Interactive.Async.Providers.rd.xml" />  </ItemGroup>  <ItemGroup>    <ProjectReference Include="..\System.Interactive.Async\System.Interactive.Async.csproj" />    <ProjectReference Include="..\System.Linq.Async.Queryable\System.Linq.Async.Queryable.csproj" />  </ItemGroup>  <ItemGroup>    <None Update="System\Linq\AsyncQueryableEx.Generated.tt" Generator="TextTemplatingFileGenerator" LastGenOutput="AsyncQueryableEx.Generated.cs" />    <Compile Update="System\Linq\AsyncQueryableEx.Generated.cs" DesignTime="True" AutoGen="True" DependentUpon="AsyncQueryableEx.Generated.tt" />  </ItemGroup>  <ItemGroup>    <Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />  </ItemGroup></Project>
 |