System.Interactive.Async.Providers.csproj 1.3 KB

12345678910111213141516171819202122232425262728293031
  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. <DebugType>embedded</DebugType>
  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. </ItemGroup>
  15. <ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.0'">
  16. <PackageReference Include="System.Linq.Queryable" Version="4.3.0" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <None Update="AsyncQueryable.Generated.tt" Generator="TextTemplatingFileGenerator" LastGenOutput="AsyncQueryable.Generated.cs" />
  20. <Compile Update="AsyncQueryable.Generated.cs" DesignTime="True" AutoGen="True" DependentUpon="AsyncQueryable.Generated.tt" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
  24. </ItemGroup>
  25. </Project>