System.Interactive.Async.Providers.csproj 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <Description>Interactive Extensions Async Providers Library used to build query providers and express queries over async enumerable sequences.</Description>
  4. <AssemblyTitle>Interactive Extensions - Async Providers Library</AssemblyTitle>
  5. <TargetFrameworks>net45;net46;netstandard1.4;netstandard2.0</TargetFrameworks>
  6. <PackageTags>Ix;Interactive;Extensions;Enumerable;Asynchronous</PackageTags>
  7. <Configurations>Debug;Release;Debug_CSharp8;Release_CSharp8</Configurations>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <EmbeddedResource Include="Properties\System.Interactive.Async.Providers.rd.xml" />
  11. </ItemGroup>
  12. <ItemGroup>
  13. <ProjectReference Include="..\System.Interactive.Async\System.Interactive.Async.csproj" />
  14. <ProjectReference Include="..\System.Linq.Async.Queryable\System.Linq.Async.Queryable.csproj" />
  15. </ItemGroup>
  16. <ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.0'">
  17. <PackageReference Include="System.Linq.Queryable" Version="4.3.0" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <None Update="System\Linq\AsyncQueryableEx.Generated.tt" Generator="TextTemplatingFileGenerator" LastGenOutput="AsyncQueryableEx.Generated.cs" />
  21. <Compile Update="System\Linq\AsyncQueryableEx.Generated.cs" DesignTime="True" AutoGen="True" DependentUpon="AsyncQueryableEx.Generated.tt" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
  25. </ItemGroup>
  26. </Project>