Skip to content

Commit ee765e7

Browse files
[master] Update dependencies from dotnet/efcore dotnet/runtime (#25399)
[master] Update dependencies from dotnet/efcore dotnet/runtime - Updating usage of IgnoreNullValues - Updating usage of IgnoreNullValues - Disabling WebRequest.Create warnings - Disabling WebRequest.Create warnings - Merge branch 'master' into darc-master-3b4656f0-1eb1-4628-b310-b71a2b9dd35f - System.IO.Pipelines Fix - CS0618 Disable - SYSLIB0014 Disable - Skip reference check of System.IO.Pipelines ref/ assembly - add Framework projects to solution - add Framework.slnf and startvs.cmd in src/Framework - Merge branch 'master' into darc-master-3b4656f0-1eb1-4628-b310-b71a2b9dd35f - Add incremental build and project references to java projects (#25707) * Add incremental build and project references to java projects * fb * fix version - Merge remote-tracking branch 'origin/master' into darc-master-3b4656f0-1eb1-4628-b310-b71a2b9dd35f
1 parent 6de6ba9 commit ee765e7

File tree

16 files changed

+245
-242
lines changed

16 files changed

+245
-242
lines changed

eng/SharedFramework.External.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
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)" />
4344
<ExternalAspNetCoreAppReference Include="System.Security.Cryptography.Xml" Version="$(SystemSecurityCryptographyXmlPackageVersion)" />
4445

4546
<!--

eng/Version.Details.xml

Lines changed: 148 additions & 148 deletions
Large diffs are not rendered by default.

eng/Versions.props

Lines changed: 74 additions & 74 deletions
Large diffs are not rendered by default.

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

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

1920
</Project>

src/Components/WebAssembly/Server/src/TargetPickerUi.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
using System.Net.Http;
1010
using System.Runtime.InteropServices;
1111
using System.Text.Json;
12+
using System.Text.Json.Serialization;
1213
using System.Threading.Tasks;
1314
using Microsoft.AspNetCore.Http;
1415

@@ -20,7 +21,7 @@ public class TargetPickerUi
2021
{
2122
PropertyNamingPolicy = JsonNamingPolicy.CamelCase,
2223
PropertyNameCaseInsensitive = true,
23-
IgnoreNullValues = true
24+
DefaultIgnoreCondition = JsonIgnoreCondition.WhenWritingNull
2425
};
2526

2627
private string _browserHost;

src/Framework/test/TestData.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ static TestData()
143143
"Microsoft.Win32.SystemEvents",
144144
"System.Diagnostics.EventLog",
145145
"System.Drawing.Common",
146+
"System.IO.Pipelines",
146147
"System.Security.Cryptography.Pkcs",
147148
"System.Security.Cryptography.Xml",
148149
"System.Security.Permissions",
@@ -274,6 +275,7 @@ static TestData()
274275
{ "Microsoft.Net.Http.Headers", "5.0.0.0" },
275276
{ "Microsoft.Win32.Registry", "5.0.0.0" },
276277
{ "System.Diagnostics.EventLog", "5.0.0.0" },
278+
{ "System.IO.Pipelines", "5.0.0.0" },
277279
{ "System.Security.AccessControl", "5.0.0.0" },
278280
{ "System.Security.Cryptography.Cng", "5.0.0.0" },
279281
{ "System.Security.Cryptography.Xml", "5.0.0.0" },

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

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

1111
<ItemGroup>
1212
<Reference Include="Microsoft.AspNetCore.Hosting" />
13+
<Reference Include="System.IO.Pipelines" />
1314
<Reference Include="Microsoft.Extensions.HostFactoryResolver.Sources" />
1415
</ItemGroup>
1516

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-
2117
</Project>

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

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

1515
<ItemGroup>
1616
<Reference Include="Microsoft.Extensions.Primitives" />
17-
</ItemGroup>
18-
19-
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == '$(DefaultNetFxTargetFramework)'">
2017
<Reference Include="System.IO.Pipelines" />
2118
</ItemGroup>
2219

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-
2820
</Project>

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

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

2020
<ItemGroup>
2121
<Reference Include="Microsoft.Net.Http.Headers" />
22+
<Reference Include="System.IO.Pipelines" />
2223
</ItemGroup>
2324

2425
</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 (now in shared Fx and a transitive ref for netstandard2.x) was removed in 5.0. Suppression can be
28+
Dependency (a transitive reference) was removed in 5.0. Suppression can be
2929
removed after 5.0 RTM is released.
3030
-->
3131
<SuppressBaselineReference Include="System.IO.Pipelines" />

0 commit comments

Comments
 (0)