System.Interactive.Providers.csproj 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <Project Sdk="MSBuild.Sdk.Extras">
  2. <PropertyGroup>
  3. <Description>Interactive Extensions Providers Library used to build query providers and express queries over enumerable sequences.</Description>
  4. <AssemblyTitle>Interactive Extensions - Providers Library</AssemblyTitle>
  5. <TargetFrameworks>net45;netstandard1.0;netstandard2.0</TargetFrameworks>
  6. <PackageTags>Ix;Interactive;Extensions;Enumerable</PackageTags>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(TargetFramework)' == 'netstandard1.0'">
  9. <DefineConstants>$(DefineConstants);CRIPPLED_REFLECTION</DefineConstants>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <EmbeddedResource Include="Properties\System.Interactive.Providers.rd.xml" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\System.Interactive\System.Interactive.csproj" />
  16. <ReferenceAssemblyProjectReference Include="..\refs\System.Interactive.Providers.Ref\System.Interactive.Providers.Ref.csproj" />
  17. </ItemGroup>
  18. <ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.0'">
  19. <PackageReference Include="System.Linq.Queryable" Version="4.3.0" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <None Update="System\Linq\QueryableEx.Generated.tt">
  23. <LastGenOutput>QueryableEx.Generated.cs</LastGenOutput>
  24. <Generator>TextTemplatingFileGenerator</Generator>
  25. </None>
  26. </ItemGroup>
  27. <ItemGroup>
  28. <Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <Compile Update="System\Linq\QueryableEx.Generated.cs">
  32. <DesignTime>True</DesignTime>
  33. <AutoGen>True</AutoGen>
  34. <DependentUpon>QueryableEx.Generated.tt</DependentUpon>
  35. </Compile>
  36. </ItemGroup>
  37. </Project>