System.Interactive.csproj 815 B

1234567891011121314151617181920212223
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <ProduceOnlyReferenceAssembly>true</ProduceOnlyReferenceAssembly>
  4. <Description>Interactive Extensions Main Library used to express queries over enumerable sequences.</Description>
  5. <AssemblyTitle>Interactive Extensions - Main Library</AssemblyTitle>
  6. <Authors>Microsoft</Authors>
  7. <!--
  8. This TFM list does not match the main project. That is deliberate.
  9. See ../../Documentation/adr/0001-Ix-Ref-Assembly-Mismatches.md
  10. -->
  11. <TargetFrameworks>net48;netstandard2.1;net6.0</TargetFrameworks>
  12. <PackageTags>Ix;Interactive;Extensions;Enumerable</PackageTags>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <Compile Include="..\..\System.Interactive\**\*.cs" Exclude="..\..\System.Interactive\obj\**" />
  16. </ItemGroup>
  17. </Project>