@@ -14,16 +14,10 @@ System.Threading.Channel<T></PackageDescription>
14
14
<ItemGroup >
15
15
<Compile Include =" System\VoidResult.cs" />
16
16
<Compile Include =" System\Threading\Channels\AsyncOperation.cs" />
17
- <Compile Include =" System\Threading\Channels\AsyncOperation.netcoreapp.cs"
18
- Condition =" '$(TargetFrameworkIdentifier)' == '.NETCoreApp'" />
19
- <Compile Include =" System\Threading\Channels\AsyncOperation.netstandard.cs"
20
- Condition =" '$(TargetFrameworkIdentifier)' != '.NETCoreApp'" />
21
17
<Compile Include =" System\Threading\Channels\BoundedChannel.cs" />
22
18
<Compile Include =" System\Threading\Channels\BoundedChannelFullMode.cs" />
23
19
<Compile Include =" System\Threading\Channels\Channel.cs" />
24
20
<Compile Include =" System\Threading\Channels\ChannelClosedException.cs" />
25
- <Compile Include =" System\Threading\Channels\ChannelClosedException.netcoreapp.cs"
26
- Condition =" $([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'netstandard2.1'))" />
27
21
<Compile Include =" System\Threading\Channels\ChannelOptions.cs" />
28
22
<Compile Include =" System\Threading\Channels\ChannelReader.cs" />
29
23
<Compile Include =" System\Threading\Channels\ChannelUtilities.cs" />
@@ -32,21 +26,25 @@ System.Threading.Channel<T></PackageDescription>
32
26
<Compile Include =" System\Threading\Channels\Channel_2.cs" />
33
27
<Compile Include =" System\Threading\Channels\IDebugEnumerator.cs" />
34
28
<Compile Include =" System\Threading\Channels\SingleConsumerUnboundedChannel.cs" />
35
- <Compile Include =" System\Threading\Channels\TaskCompletionSource.cs"
36
- Condition =" '$(TargetFrameworkIdentifier)' != '.NETCoreApp'" />
37
29
<Compile Include =" System\Threading\Channels\UnboundedChannel.cs" />
38
- <Compile Include =" $(CommonPath)Internal\Padding.cs"
39
- Link =" Common\Internal\Padding.cs" />
40
- <Compile Include =" $(CommonPath)System\Collections\Concurrent\IProducerConsumerQueue.cs"
41
- Link =" Common\System\Collections\Concurrent\IProducerConsumerQueue.cs" />
42
- <Compile Include =" $(CommonPath)System\Collections\Concurrent\MultiProducerMultiConsumerQueue.cs"
43
- Link =" Common\System\Collections\Concurrent\MultiProducerMultiConsumerQueue.cs" />
44
- <Compile Include =" $(CommonPath)System\Collections\Concurrent\SingleProducerSingleConsumerQueue.cs"
45
- Link =" Common\System\Collections\Concurrent\SingleProducerSingleConsumerQueue.cs" />
46
- <Compile Include =" $(CommonPath)System\Collections\Generic\Deque.cs"
47
- Link =" Common\System\Collections\Generic\Deque.cs" />
48
- <Compile Include =" $(CommonPath)System\Obsoletions.cs"
49
- Link =" Common\System\Obsoletions.cs" />
30
+ <Compile Include =" $(CommonPath)Internal\Padding.cs" Link =" Common\Internal\Padding.cs" />
31
+ <Compile Include =" $(CommonPath)System\Collections\Concurrent\IProducerConsumerQueue.cs" Link =" Common\System\Collections\Concurrent\IProducerConsumerQueue.cs" />
32
+ <Compile Include =" $(CommonPath)System\Collections\Concurrent\MultiProducerMultiConsumerQueue.cs" Link =" Common\System\Collections\Concurrent\MultiProducerMultiConsumerQueue.cs" />
33
+ <Compile Include =" $(CommonPath)System\Collections\Concurrent\SingleProducerSingleConsumerQueue.cs" Link =" Common\System\Collections\Concurrent\SingleProducerSingleConsumerQueue.cs" />
34
+ <Compile Include =" $(CommonPath)System\Collections\Generic\Deque.cs" Link =" Common\System\Collections\Generic\Deque.cs" />
35
+ <Compile Include =" $(CommonPath)System\Obsoletions.cs" Link =" Common\System\Obsoletions.cs" />
36
+ </ItemGroup >
37
+
38
+ <ItemGroup Condition =" '$(TargetFrameworkIdentifier)' != '.NETCoreApp'" >
39
+ <Compile Include =" System\Threading\Channels\AsyncOperation.netstandard.cs" />
40
+ <Compile Include =" System\Threading\Channels\TaskCompletionSource.cs" />
41
+ </ItemGroup >
42
+
43
+ <ItemGroup Condition =" '$(TargetFrameworkIdentifier)' == '.NETCoreApp'" >
44
+ <Compile Include =" System\Threading\Channels\AsyncOperation.netcoreapp.cs" />
45
+ <Compile Include =" System\Threading\Channels\Channel.netcoreapp.cs" />
46
+ <Compile Include =" System\Threading\Channels\ChannelOptions.netcoreapp.cs" />
47
+ <Compile Include =" System\Threading\Channels\UnboundedPriorityChannel.cs" />
50
48
</ItemGroup >
51
49
52
50
<ItemGroup Condition =" '$(TargetFramework)' == '$(NetCoreAppCurrent)'" >
@@ -57,6 +55,10 @@ System.Threading.Channel<T></PackageDescription>
57
55
<Reference Include =" System.Threading.ThreadPool" />
58
56
</ItemGroup >
59
57
58
+ <ItemGroup Condition =" $([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'netstandard2.1'))" >
59
+ <Compile Include =" System\Threading\Channels\ChannelClosedException.netcoreapp.cs" />
60
+ </ItemGroup >
61
+
60
62
<ItemGroup Condition =" !$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'netstandard2.1'))" >
61
63
<PackageReference Include =" System.Threading.Tasks.Extensions" Version =" $(SystemThreadingTasksExtensionsVersion)" />
62
64
<ProjectReference Include =" $(LibrariesProjectRoot)Microsoft.Bcl.AsyncInterfaces\src\Microsoft.Bcl.AsyncInterfaces.csproj" />
0 commit comments