diff --git a/eng/Versions.props b/eng/Versions.props index a7a02c754008..6bb3f22909bd 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -161,7 +161,7 @@ true - 4.4.0-3.22452.8 + 4.5.0-1.22517.9 5.0.0-preview.4.20180.4 diff --git a/global.json b/global.json index c05556e238f1..50c469a64427 100644 --- a/global.json +++ b/global.json @@ -1,9 +1,9 @@ { "sdk": { - "version": "8.0.100-alpha.1.22480.9" + "version": "8.0.100-alpha.1.22524.1" }, "tools": { - "dotnet": "8.0.100-alpha.1.22480.9", + "dotnet": "8.0.100-alpha.1.22524.1", "runtimes": { "dotnet/x86": [ "$(MicrosoftNETCoreBrowserDebugHostTransportVersion)" diff --git a/src/Features/JsonPatch/src/Operations/Operation.cs b/src/Features/JsonPatch/src/Operations/Operation.cs index 67d93a09630c..9ce29c3a5c16 100644 --- a/src/Features/JsonPatch/src/Operations/Operation.cs +++ b/src/Features/JsonPatch/src/Operations/Operation.cs @@ -9,7 +9,7 @@ namespace Microsoft.AspNetCore.JsonPatch.Operations; public class Operation : OperationBase { - [JsonProperty("value")] + [JsonProperty(nameof(value))] public object value { get; set; } public Operation() diff --git a/src/Features/JsonPatch/src/Operations/OperationBase.cs b/src/Features/JsonPatch/src/Operations/OperationBase.cs index 9bc59cb4d4c9..7ae24f6c7fc2 100644 --- a/src/Features/JsonPatch/src/Operations/OperationBase.cs +++ b/src/Features/JsonPatch/src/Operations/OperationBase.cs @@ -20,10 +20,10 @@ public OperationType OperationType } } - [JsonProperty("path")] + [JsonProperty(nameof(path))] public string path { get; set; } - [JsonProperty("op")] + [JsonProperty(nameof(op))] public string op { get @@ -42,7 +42,7 @@ public string op } } - [JsonProperty("from")] + [JsonProperty(nameof(from))] public string from { get; set; } public OperationBase() diff --git a/src/Servers/Kestrel/Core/src/KestrelServerOptions.cs b/src/Servers/Kestrel/Core/src/KestrelServerOptions.cs index f31880e8911a..fc6322dd417f 100644 --- a/src/Servers/Kestrel/Core/src/KestrelServerOptions.cs +++ b/src/Servers/Kestrel/Core/src/KestrelServerOptions.cs @@ -252,9 +252,6 @@ internal void Serialize(Utf8JsonWriter writer) writer.WritePropertyName(nameof(AllowResponseHeaderCompression)); writer.WriteBooleanValue(AllowResponseHeaderCompression); - writer.WritePropertyName(nameof(EnableAltSvc)); - writer.WriteBooleanValue(EnableAltSvc); - writer.WritePropertyName(nameof(IsDevCertLoaded)); writer.WriteBooleanValue(IsDevCertLoaded);