Skip to content

Commit 3a7fb76

Browse files
TanayParikhcaptainsafia
authored andcommitted
Revert "System.IO.Pipelines Fix"
This reverts commit 520b9e2.
1 parent e0ad841 commit 3a7fb76

File tree

10 files changed

+14
-10
lines changed

10 files changed

+14
-10
lines changed

eng/SharedFramework.External.props

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
<ExternalAspNetCoreAppReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="$(MicrosoftExtensionsOptionsDataAnnotationsPackageVersion)" />
4141
<ExternalAspNetCoreAppReference Include="Microsoft.Extensions.Options" Version="$(MicrosoftExtensionsOptionsPackageVersion)" />
4242
<ExternalAspNetCoreAppReference Include="Microsoft.Extensions.Primitives" Version="$(MicrosoftExtensionsPrimitivesPackageVersion)" />
43-
<ExternalAspNetCoreAppReference Include="System.IO.Pipelines" Version="$(SystemIOPipelinesPackageVersion)" />
4443
<ExternalAspNetCoreAppReference Include="System.Security.Cryptography.Xml" Version="$(SystemSecurityCryptographyXmlPackageVersion)" />
4544

4645
<!--

src/Components/Web/src/Microsoft.AspNetCore.Components.Web.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
<Reference Include="Microsoft.AspNetCore.Components.Forms" />
1515
<Reference Include="Microsoft.Extensions.DependencyInjection" />
1616
<Reference Include="Microsoft.JSInterop" />
17-
<Reference Include="System.IO.Pipelines" />
1817
</ItemGroup>
1918

2019
</Project>

src/Framework/test/TestData.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ static TestData()
143143
"Microsoft.Win32.SystemEvents",
144144
"System.Diagnostics.EventLog",
145145
"System.Drawing.Common",
146-
"System.IO.Pipelines",
147146
"System.Security.Cryptography.Pkcs",
148147
"System.Security.Cryptography.Xml",
149148
"System.Security.Permissions",
@@ -275,7 +274,6 @@ static TestData()
275274
{ "Microsoft.Net.Http.Headers", "5.0.0.0" },
276275
{ "Microsoft.Win32.Registry", "5.0.0.0" },
277276
{ "System.Diagnostics.EventLog", "5.0.0.0" },
278-
{ "System.IO.Pipelines", "5.0.0.0" },
279277
{ "System.Security.AccessControl", "5.0.0.0" },
280278
{ "System.Security.Cryptography.Cng", "5.0.0.0" },
281279
{ "System.Security.Cryptography.Xml", "5.0.0.0" },

src/Hosting/TestHost/src/Microsoft.AspNetCore.TestHost.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@
1010

1111
<ItemGroup>
1212
<Reference Include="Microsoft.AspNetCore.Hosting" />
13-
<Reference Include="System.IO.Pipelines" />
1413
<Reference Include="Microsoft.Extensions.HostFactoryResolver.Sources" />
1514
</ItemGroup>
1615

16+
<ItemGroup Condition=" '$(AspNetCoreMajorMinorVersion)' == '5.0' ">
17+
<!-- Dependency (now in shared Fx) was removed in 5.0. Suppression can be removed after 5.0 RTM is released. -->
18+
<SuppressBaselineReference Include="System.IO.Pipelines" />
19+
</ItemGroup>
20+
1721
</Project>

src/Http/Http.Features/src/Microsoft.AspNetCore.Http.Features.csproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,15 @@
1414

1515
<ItemGroup>
1616
<Reference Include="Microsoft.Extensions.Primitives" />
17+
</ItemGroup>
18+
19+
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == '$(DefaultNetFxTargetFramework)'">
1720
<Reference Include="System.IO.Pipelines" />
1821
</ItemGroup>
1922

23+
<ItemGroup Condition=" '$(AspNetCoreMajorMinorVersion)' == '5.0' AND '$(TargetFramework)' == '$(DefaultNetCoreTargetFramework)' ">
24+
<!-- Dependency (now in shared Fx) was removed in 5.0. Suppression can be removed after 5.0 RTM is released. -->
25+
<SuppressBaselineReference Include="System.IO.Pipelines" />
26+
</ItemGroup>
27+
2028
</Project>

src/Http/WebUtilities/src/Microsoft.AspNetCore.WebUtilities.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919

2020
<ItemGroup>
2121
<Reference Include="Microsoft.Net.Http.Headers" />
22-
<Reference Include="System.IO.Pipelines" />
2322
</ItemGroup>
2423

2524
</Project>

src/Servers/Connections.Abstractions/src/Microsoft.AspNetCore.Connections.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
<ItemGroup Condition=" '$(AspNetCoreMajorMinorVersion)' == '5.0' ">
2727
<!--
28-
Dependency (a transitive reference) was removed in 5.0. Suppression can be
28+
Dependency (now in shared Fx and a transitive ref for netstandard2.x) was removed in 5.0. Suppression can be
2929
removed after 5.0 RTM is released.
3030
-->
3131
<SuppressBaselineReference Include="System.IO.Pipelines" />

src/Servers/IIS/IIS/src/Microsoft.AspNetCore.Server.IIS.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
<Reference Include="Microsoft.AspNetCore.Http.Extensions" />
4242
<Reference Include="Microsoft.AspNetCore.Http.Features" />
4343
<Reference Include="Microsoft.Extensions.FileProviders.Physical" />
44-
<Reference Include="System.IO.Pipelines" />
4544
<Reference Include="System.Security.Principal.Windows" />
4645
</ItemGroup>
4746

src/Servers/IIS/IISIntegration/src/Microsoft.AspNetCore.Server.IISIntegration.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
<Reference Include="Microsoft.AspNetCore.HttpOverrides" />
2121
<Reference Include="Microsoft.Extensions.Logging.Abstractions" />
2222
<Reference Include="Microsoft.Extensions.Options" />
23-
<Reference Include="System.IO.Pipelines" />
2423
<Reference Include="System.Security.Principal.Windows" />
2524
</ItemGroup>
2625

src/Shared/test/Shared.Tests/Microsoft.AspNetCore.Shared.Tests.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535

3636
<ItemGroup>
3737
<Reference Include="FSharp.Core" />
38-
<Reference Include="System.IO.Pipelines" />
3938
<Reference Include="System.Reflection.Metadata" />
4039
<Reference Include="System.Runtime.CompilerServices.Unsafe" />
4140
<Reference Include="System.Security.Cryptography.Cng" />

0 commit comments

Comments
 (0)