| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <Project Sdk="MSBuild.Sdk.Extras">
- <PropertyGroup>
- <Description>Interactive Extensions Providers Library used to build query providers and express queries over enumerable sequences.</Description>
- <AssemblyTitle>Interactive Extensions - Providers Library</AssemblyTitle>
- <TargetFrameworks>net45;netstandard1.0;netstandard2.0</TargetFrameworks>
- <PackageTags>Ix;Interactive;Extensions;Enumerable</PackageTags>
- </PropertyGroup>
- <PropertyGroup Condition="'$(TargetFramework)' == 'netstandard1.0'">
- <DefineConstants>$(DefineConstants);CRIPPLED_REFLECTION</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <EmbeddedResource Include="Properties\System.Interactive.Providers.rd.xml" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\System.Interactive\System.Interactive.csproj" />
- <ReferenceAssemblyProjectReference Include="..\refs\System.Interactive.Providers.Ref\System.Interactive.Providers.Ref.csproj" />
- </ItemGroup>
- <ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.0'">
- <PackageReference Include="System.Linq.Queryable" Version="4.3.0" />
- </ItemGroup>
- <ItemGroup>
- <None Update="System\Linq\QueryableEx.Generated.tt">
- <LastGenOutput>QueryableEx.Generated.cs</LastGenOutput>
- <Generator>TextTemplatingFileGenerator</Generator>
- </None>
- </ItemGroup>
- <ItemGroup>
- <Service Include="{508349b6-6b84-4df5-91f0-309beebad82d}" />
- </ItemGroup>
- <ItemGroup>
- <Compile Update="System\Linq\QueryableEx.Generated.cs">
- <DesignTime>True</DesignTime>
- <AutoGen>True</AutoGen>
- <DependentUpon>QueryableEx.Generated.tt</DependentUpon>
- </Compile>
- </ItemGroup>
- </Project>
|