Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit 74a13ff

Browse files
committed
packaging
1 parent e7a4807 commit 74a13ff

File tree

4 files changed

+21
-0
lines changed

4 files changed

+21
-0
lines changed

src/System.Net.WebSockets.WebSocketProtocol/ref/System.Net.WebSockets.WebSocketProtocol.csproj

+6
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,10 @@
99
<ItemGroup>
1010
<Reference Include="System.Memory" />
1111
</ItemGroup>
12+
<ItemGroup Condition="'$(TargetGroup)' == 'netstandard' OR '$(TargetsNetFx)' == 'true'">
13+
<Reference Include="mscorlib" />
14+
<Reference Include="netstandard" />
15+
<Reference Include="System.Threading.Tasks.Extensions" />
16+
<ProjectReference Include="..\..\Microsoft.Bcl.AsyncInterfaces\ref\Microsoft.Bcl.AsyncInterfaces.csproj" />
17+
</ItemGroup>
1218
</Project>

src/System.Net.WebSockets.WebSocketProtocol/src/System.Net.WebSockets.WebSocketProtocol.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<ProjectGuid>{747BE014-7C1D-4460-95AF-B41C35717165}</ProjectGuid>
66
<NoWarn>$(NoWarn);CS1573</NoWarn>
77
<Configurations>netcoreapp-Debug;netcoreapp-Release;netcoreapp2.1-Debug;netcoreapp2.1-Release;netstandard-Debug;netstandard-Release</Configurations>
8+
<DefineConstants Condition="'$(TargetsNetFx)' == 'true'">$(DefineConstants);netstandard</DefineConstants>
89
</PropertyGroup>
910
<ItemGroup>
1011
<Compile Include="$(CommonPath)\System\Net\WebSockets\ManagedWebSocket.cs">
@@ -41,4 +42,7 @@
4142
<Reference Include="System.Threading.Tasks.Extensions" />
4243
<Reference Include="System.Threading.Timer" />
4344
</ItemGroup>
45+
<ItemGroup Condition="'$(TargetGroup)'!='netcoreapp'">
46+
<Reference Include="Microsoft.Bcl.AsyncInterfaces" />
47+
</ItemGroup>
4448
</Project>

src/System.Net.WebSockets/ref/System.Net.WebSockets.csproj

+7
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,11 @@
1515
<ProjectReference Include="..\..\System.Security.Principal\ref\System.Security.Principal.csproj" />
1616
<ProjectReference Include="..\..\System.Threading.Tasks\ref\System.Threading.Tasks.csproj" />
1717
</ItemGroup>
18+
<ItemGroup Condition="'$(TargetGroup)' == 'netstandard' OR '$(TargetsNetFx)' == 'true'">
19+
<Reference Include="mscorlib" />
20+
<Reference Include="netstandard" />
21+
<Reference Include="System.Memory" />
22+
<Reference Include="System.Threading.Tasks.Extensions" />
23+
<ProjectReference Include="..\..\Microsoft.Bcl.AsyncInterfaces\ref\Microsoft.Bcl.AsyncInterfaces.csproj" />
24+
</ItemGroup>
1825
</Project>

src/System.Net.WebSockets/src/System.Net.WebSockets.csproj

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
66
<NoWarn>$(NoWarn);CS1573</NoWarn>
77
<Configurations>netcoreapp-Debug;netcoreapp-Release;uap-Windows_NT-Debug;uap-Windows_NT-Release</Configurations>
8+
<DefineConstants Condition="'$(TargetsNetFx)' == 'true'">$(DefineConstants);netstandard</DefineConstants>
89
</PropertyGroup>
910
<ItemGroup>
1011
<Compile Include="System\Net\WebSockets\ManagedWebSocket.netcoreapp.cs" />
@@ -44,4 +45,7 @@
4445
<Reference Include="System.Threading.Tasks" />
4546
<Reference Include="System.Threading.Timer" />
4647
</ItemGroup>
48+
<ItemGroup Condition="'$(TargetGroup)'!='netcoreapp'">
49+
<Reference Include="Microsoft.Bcl.AsyncInterfaces" />
50+
</ItemGroup>
4751
</Project>

0 commit comments

Comments
 (0)