System.Interactive.Async.csproj 1.3 KB

123456789101112131415161718192021222324252627
  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>net461;netstandard2.0;netstandard2.1;netcoreapp3.0</TargetFrameworks>
  6. <PackageTags>Ix;Interactive;Extensions;Enumerable;Asynchronous</PackageTags>
  7. <NullableContextOptions>enable</NullableContextOptions>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <Compile Include="..\System.Linq.Async\System\Error.cs" Link="System\Error.cs" />
  11. <Compile Include="..\System.Linq.Async\System\Linq\AsyncIterator.cs" Link="System\Linq\AsyncIterator.cs" />
  12. <Compile Include="..\System.Linq.Async\System\Linq\Set.cs" Link="System\Linq\Set.cs" />
  13. <Compile Include="..\System.Linq.Async\System\Strings.cs" Link="System\Strings.cs" />
  14. <Compile Include="..\System.Linq.Async\System\Threading\Tasks\AsyncEnumerableExt.cs" Link="System\Threading\Tasks\AsyncEnumerableExt.cs" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <EmbeddedResource Include="Properties\System.Interactive.Async.rd.xml" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <ProjectReference Include="..\System.Linq.Async\System.Linq.Async.csproj" />
  21. </ItemGroup>
  22. </Project>