1234567891011121314151617181920212223 |
- <Project Sdk="MSBuild.Sdk.Extras">
- <PropertyGroup>
- <Description>Interactive Extensions Async Library used to express queries over asynchronous enumerable sequences.</Description>
- <AssemblyTitle>Interactive Extensions - Async Library</AssemblyTitle>
- <Authors>Microsoft</Authors>
- <TargetFrameworks>netcoreapp2.0;netstandard2.1</TargetFrameworks>
- <PackageTags>Ix;Interactive;Extensions;Enumerable;Asynchronous</PackageTags>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="..\..\System.Interactive.Async\**\*.cs" Exclude="..\..\System.Interactive.Async\obj\**" />
- <Compile Include="..\..\System.Linq.Async\System\Error.cs" Link="System\Error.cs" />
- <Compile Include="..\..\System.Linq.Async\System\Linq\AsyncIterator.cs" Link="System\Linq\AsyncIterator.cs" />
- <Compile Include="..\..\System.Linq.Async\System\Linq\Set.cs" Link="System\Linq\Set.cs" />
- <Compile Include="..\..\System.Linq.Async\System\Strings.cs" Link="System\Strings.cs" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\System.Linq.Async.Ref\System.Linq.Async.Ref.csproj" />
- </ItemGroup>
-
- </Project>
|