|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<EnableDefaultItems>false</EnableDefaultItems>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
<AssemblyName>System.Linq.Parallel</AssemblyName>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>Preview</LangVersion>
<DefineConstants>TRACE;DEBUG;NET;NET10_0;NETCOREAPP;NET5_0_OR_GREATER;NET6_0_OR_GREATER;NET7_0_OR_GREATER;NET8_0_OR_GREATER;NET9_0_OR_GREATER;NET10_0_OR_GREATER;NETCOREAPP1_0_OR_GREATER;NETCOREAPP1_1_OR_GREATER;NETCOREAPP2_0_OR_GREATER;NETCOREAPP2_1_OR_GREATER;NETCOREAPP2_2_OR_GREATER;NETCOREAPP3_0_OR_GREATER;NETCOREAPP3_1_OR_GREATER</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="System\Linq\Parallel\Channels\AsynchronousChannel.cs"/>
<Compile Include="System\Linq\Parallel\Channels\SynchronousChannel.cs"/>
<Compile Include="System\Linq\Parallel\Enumerables\AggregationMinMaxHelpers.cs"/>
<Compile Include="System\Linq\Parallel\Enumerables\EmptyEnumerable.cs"/>
<Compile Include="System\Linq\Parallel\Enumerables\EnumerableWrapperWeakToStrong.cs"/>
<Compile Include="System\Linq\Parallel\Enumerables\IParallelPartitionable.cs"/>
<Compile Include="System\Linq\Parallel\Enumerables\OrderedParallelQuery.cs"/>
<Compile Include="System\Linq\Parallel\Enumerables\ParallelEnumerableWrapper.cs"/>
<Compile Include="System\Linq\Parallel\Enumerables\ParallelQuery.cs"/>
<Compile Include="System\Linq\Parallel\Enumerables\QueryAggregationOptions.cs"/>
<Compile Include="System\Linq\Parallel\Enumerables\RangeEnumerable.cs"/>
<Compile Include="System\Linq\Parallel\Enumerables\RepeatEnumerable.cs"/>
<Compile Include="System\Linq\Parallel\JaggedArray.cs"/>
<Compile Include="System\Linq\Parallel\Merging\ArrayMergeHelper.cs"/>
<Compile Include="System\Linq\Parallel\Merging\AsynchronousChannelMergeEnumerator.cs"/>
<Compile Include="System\Linq\Parallel\Merging\DefaultMergeHelper.cs"/>
<Compile Include="System\Linq\Parallel\Merging\IMergeHelper.cs"/>
<Compile Include="System\Linq\Parallel\Merging\MergeEnumerator.cs"/>
<Compile Include="System\Linq\Parallel\Merging\MergeExecutor.cs"/>
<Compile Include="System\Linq\Parallel\Merging\OrderPreservingMergeHelper.cs"/>
<Compile Include="System\Linq\Parallel\Merging\OrderPreservingPipeliningMergeHelper.cs"/>
<Compile Include="System\Linq\Parallel\Merging\SynchronousChannelMergeEnumerator.cs"/>
<Compile Include="System\Linq\ParallelEnumerable.cs"/>
<Compile Include="System\Linq\ParallelExecutionMode.cs"/>
<Compile Include="System\Linq\ParallelMergeOptions.cs"/>
<Compile Include="System\Linq\Parallel\Partitioning\HashRepartitionEnumerator.cs"/>
<Compile Include="System\Linq\Parallel\Partitioning\HashRepartitionStream.cs"/>
<Compile Include="System\Linq\Parallel\Partitioning\IPartitionedStreamRecipient.cs"/>
<Compile Include="System\Linq\Parallel\Partitioning\OrderedHashRepartitionEnumerator.cs"/>
<Compile Include="System\Linq\Parallel\Partitioning\OrderedHashRepartitionStream.cs"/>
<Compile Include="System\Linq\Parallel\Partitioning\PartitionedDataSource.cs"/>
<Compile Include="System\Linq\Parallel\Partitioning\PartitionedStream.cs"/>
<Compile Include="System\Linq\Parallel\Partitioning\UnorderedHashRepartitionStream.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\AssociativeAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\BinaryQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Binary\ConcatQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Binary\ExceptQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Binary\GroupJoinQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Binary\HashJoinQueryOperatorEnumerator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Binary\IntersectQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Binary\JoinQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Binary\UnionQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Binary\ZipQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\CountAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\DecimalAverageAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\DecimalMinMaxAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\DecimalSumAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\DoubleAverageAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\DoubleMinMaxAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\DoubleSumAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\FloatAverageAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\FloatMinMaxAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\FloatSumAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\InlinedAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\InlinedAggregationOperatorEnumerator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\IntAverageAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\IntMinMaxAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\IntSumAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\LongAverageAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\LongCountAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\LongMinMaxAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\LongSumAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\NullableDecimalAverageAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\NullableDecimalMinMaxAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\NullableDecimalSumAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\NullableDoubleAverageAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\NullableDoubleMinMaxAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\NullableDoubleSumAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\NullableFloatAverageAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\NullableFloatMinMaxAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\NullableFloatSumAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\NullableIntAverageAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\NullableIntMinMaxAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\NullableIntSumAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\NullableLongAverageAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\NullableLongMinMaxAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Inlined\NullableLongSumAggregationOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\ListQueryResults.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Options\OrderingQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Options\QueryExecutionOption.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\OrdinalIndexState.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\PartitionedStreamMerger.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\PartitionerQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\QueryOpeningEnumerator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\QueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\QueryOperatorEnumerator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\QueryResults.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\QuerySettings.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\ScanQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\UnaryQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\AnyAllSearchOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\ContainsSearchOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\DefaultIfEmptyQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\DistinctQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\ElementAtQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\FirstQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\ForAllOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\GroupByQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\IndexedSelectQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\IndexedWhereQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\LastQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\ReverseQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\SelectManyQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\SelectQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\SingleQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\SortQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\TakeOrSkipWhileQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\QueryOperators\Unary\WhereQueryOperator.cs"/>
<Compile Include="System\Linq\Parallel\Scheduling\CancellationState.cs"/>
<Compile Include="System\Linq\Parallel\Scheduling\OrderPreservingPipeliningSpoolingTask.cs"/>
<Compile Include="System\Linq\Parallel\Scheduling\OrderPreservingSpoolingTask.cs"/>
<Compile Include="System\Linq\Parallel\Scheduling\QueryLifecycle.cs"/>
<Compile Include="System\Linq\Parallel\Scheduling\QueryTask.cs"/>
<Compile Include="System\Linq\Parallel\Scheduling\QueryTaskGroupState.cs"/>
<Compile Include="System\Linq\Parallel\Scheduling\Scheduling.cs"/>
<Compile Include="System\Linq\Parallel\Scheduling\SpoolingTask.cs"/>
<Compile Include="System\Linq\Parallel\Scheduling\SpoolingTaskBase.cs"/>
<Compile Include="System\Linq\Parallel\Utils\CancellableEnumerable.cs"/>
<Compile Include="System\Linq\Parallel\Utils\ExceptionAggregator.cs"/>
<Compile Include="System\Linq\Parallel\Utils\ExchangeUtilities.cs"/>
<Compile Include="System\Linq\Parallel\Utils\FixedMaxHeap.cs"/>
<Compile Include="System\Linq\Parallel\Utils\GrowingArray.cs"/>
<Compile Include="System\Linq\Parallel\Utils\HashLookup.cs"/>
<Compile Include="System\Linq\Parallel\Utils\IntValueEvent.cs"/>
<Compile Include="System\Linq\Parallel\Utils\ListChunk.cs"/>
<Compile Include="System\Linq\Parallel\Utils\Lookup.cs"/>
<Compile Include="System\Linq\Parallel\Utils\Pair.cs"/>
<Compile Include="System\Linq\Parallel\Utils\PairComparer.cs"/>
<Compile Include="System\Linq\Parallel\Utils\PLINQETWProvider.cs"/>
<Compile Include="System\Linq\Parallel\Utils\ReverseComparer.cs"/>
<Compile Include="System\Linq\Parallel\Utils\Shared.cs"/>
<Compile Include="System\Linq\Parallel\Utils\Sorting.cs"/>
<Compile Include="System\Linq\Parallel\Utils\TraceHelpers.cs"/>
<Compile Include="System\Linq\Parallel\Utils\Util.cs"/>
<Compile Include="System\Linq\Parallel\Utils\Wrapper.cs"/>
<Compile Include="System\Linq\Parallel\Utils\WrapperEqualityComparer.cs"/>
<Compile Include="..\..\Common\src\System\SR.cs" Link="src\libraries\Common\src\System\SR.cs"/>
<Compile Include="..\..\Common\src\SkipLocalsInit.cs" Link="src\libraries\Common\src\SkipLocalsInit.cs"/>
<Compile Include="..\..\..\..\artifacts\obj\System.Linq.Parallel\Debug\net10.0\.NETCoreApp,Version=v10.0.AssemblyAttributes.cs" Link="artifacts\obj\System.Linq.Parallel\Debug\net10.0\.NETCoreApp,Version=v10.0.AssemblyAttributes.cs"/>
<Compile Include="..\..\..\..\artifacts\obj\System.Linq.Parallel\Debug\net10.0\System.SR.cs" Link="artifacts\obj\System.Linq.Parallel\Debug\net10.0\System.SR.cs"/>
<Compile Include="..\..\..\..\artifacts\obj\System.Linq.Parallel\Debug\net10.0\System.Linq.Parallel.AssemblyInfo.cs" Link="artifacts\obj\System.Linq.Parallel\Debug\net10.0\System.Linq.Parallel.AssemblyInfo.cs"/>
</ItemGroup>
<ItemGroup>
<ReferencePath Include="..\..\..\..\..\ref\23df4ef259cc42f5a7de18e9ee2f5b3f\System.Collections.Concurrent.dll"/>
<ReferencePath Include="..\..\..\..\..\ref\808826a007db4bfd8b0edad5657920c4\System.Collections.dll"/>
<ReferencePath Include="..\..\..\..\..\ref\1e747f6188d14472bc7d9b1b01f65f7c\System.Diagnostics.Tracing.dll"/>
<ReferencePath Include="..\..\..\..\..\ref\8f1bc18f5f8d46f38f15c2c1ba648785\System.Linq.dll"/>
<ReferencePath Include="..\..\..\..\..\ref\b6962ebeaf58479baebdeba5c3647a21\System.Memory.dll"/>
<ReferencePath Include="..\..\..\..\..\ref\696123198f784cfc95359da1a83fb2e4\System.Runtime.dll"/>
<ReferencePath Include="..\..\..\..\..\ref\f7aa44f7c5a2431ea323bde941c2f27a\System.Threading.dll"/>
</ItemGroup>
</Project>
|