1
0

System.Interactive.Async.csproj 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. <!--
  6. .NET 10.0 gets its own target because that doesn't need a transitive reference
  7. to System.Linq.AsyncEnumerable - it's built in from .NET 10.0 and later -
  8. but all other targets do need that reference.
  9. Even though we support back to .NET 8.0 for v7, we don't build targets for
  10. any versions older than net10.0 because net8.0 and net9.0 are both covered
  11. by the netstandard2.0 target.
  12. -->
  13. <TargetFrameworks>net48;netstandard2.0;netstandard2.1;net10.0</TargetFrameworks>
  14. <PackageTags>Ix;Interactive;Extensions;Enumerable;Asynchronous</PackageTags>
  15. </PropertyGroup>
  16. <PropertyGroup>
  17. <!-- IDE0305 wants to turn things like list.ToArray into [..list], which we don't find to be an improvement in readability. -->
  18. <NoWarn>$(NoWarn);IDE0305</NoWarn>
  19. </PropertyGroup>
  20. <ItemGroup>
  21. <Compile Include="..\System.Linq.Async\System\Error.cs" Link="System\Error.cs" />
  22. <Compile Include="..\System.Linq.Async\System\Linq\AsyncIterator.cs" Link="System\Linq\AsyncIterator.cs" />
  23. <Compile Include="..\System.Linq.Async\System\Linq\Set.cs" Link="System\Linq\Set.cs" />
  24. <Compile Include="..\System.Linq.Async\System\Strings.cs" Link="System\Strings.cs" />
  25. <Compile Include="..\System.Linq.Async\System\Threading\Tasks\AsyncEnumerableExt.cs" Link="System\Threading\Tasks\AsyncEnumerableExt.cs" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <EmbeddedResource Include="Properties\System.Interactive.Async.rd.xml" />
  29. </ItemGroup>
  30. <ItemGroup Condition="'$(TargetFramework)' != 'net10.0'">
  31. <PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0-rc.1.25451.107" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <ProjectReference Include="..\System.Linq.Async.SourceGenerator\System.Linq.Async.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false" Private="false" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <Compile Update="System\Linq\Operators\Average.Generated.cs">
  38. <DependentUpon>Average.Generated.tt</DependentUpon>
  39. <DesignTime>True</DesignTime>
  40. <AutoGen>True</AutoGen>
  41. </Compile>
  42. </ItemGroup>
  43. <ItemGroup>
  44. <None Update="System\Linq\Operators\Average.Generated.tt">
  45. <LastGenOutput>Average.Generated.cs</LastGenOutput>
  46. <Generator>TextTemplatingFileGenerator</Generator>
  47. </None>
  48. </ItemGroup>
  49. <ItemGroup>
  50. <Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
  51. </ItemGroup>
  52. </Project>