System.Interactive.Async.csproj 1.1 KB

12345678910111213141516171819202122232425
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <Description>Interactive Extensions Async Library used to express queries over asynchronous enumerable sequences.</Description>
  4. <AssemblyTitle>Interactive Extensions - Async Library</AssemblyTitle>
  5. <TargetFrameworks>net45;net46;netstandard1.4;netstandard2.0</TargetFrameworks>
  6. <PackageTags>Ix;Interactive;Extensions;Enumerable;Asynchronous</PackageTags>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <Compile Include="..\System.Linq.Async\System\Error.cs" Link="System\Error.cs" />
  10. <Compile Include="..\System.Linq.Async\System\Linq\AsyncIterator.cs" Link="System\Linq\AsyncIterator.cs" />
  11. <Compile Include="..\System.Linq.Async\System\Linq\Set.cs" Link="System\Linq\Set.cs" />
  12. <Compile Include="..\System.Linq.Async\System\Strings.cs" Link="System\Strings.cs" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <EmbeddedResource Include="Properties\System.Interactive.Async.rd.xml" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <ProjectReference Include="..\System.Linq.Async\System.Linq.Async.csproj" />
  19. </ItemGroup>
  20. </Project>