System.Interactive.Async.Providers.csproj 1.2 KB

123456789101112131415161718192021222324252627282930
  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;netstandard1.0</TargetFrameworks>
  6. <PackageTags>Ix;Interactive;Extensions;Enumerable;Asynchronous</PackageTags>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <EmbeddedResource Include="Properties\System.Interactive.Async.Providers.rd.xml" />
  10. </ItemGroup>
  11. <ItemGroup>
  12. <ProjectReference Include="..\System.Interactive.Async\System.Interactive.Async.csproj" />
  13. </ItemGroup>
  14. <ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.0'">
  15. <PackageReference Include="System.Linq.Queryable" Version="4.3.0" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <None Update="AsyncQueryable.Generated.tt" Generator="TextTemplatingFileGenerator" LastGenOutput="AsyncQueryable.Generated.cs" />
  19. <Compile Update="AsyncQueryable.Generated.cs" DesignTime="True" AutoGen="True" DependentUpon="AsyncQueryable.Generated.tt" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
  23. </ItemGroup>
  24. </Project>