Skip to content

Commit be9e309

Browse files
authored
Revert "Update SDK (#44601)" (#44730)
This reverts commit 1e8fe7e.
1 parent 1e8fe7e commit be9e309

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@
161161
<PropertyGroup Label="Manual">
162162
<!-- Bumping the Roslyn version used in order to ingest the new runtime source generators -->
163163
<UsingToolMicrosoftNetCompilers>true</UsingToolMicrosoftNetCompilers>
164-
<MicrosoftNetCompilersToolsetVersion>4.5.0-1.22517.9</MicrosoftNetCompilersToolsetVersion>
164+
<MicrosoftNetCompilersToolsetVersion>4.4.0-3.22452.8</MicrosoftNetCompilersToolsetVersion>
165165
<!-- DiagnosticAdapter package pinned temporarily until migrated/deprecated -->
166166
<MicrosoftExtensionsDiagnosticAdapterVersion>5.0.0-preview.4.20180.4</MicrosoftExtensionsDiagnosticAdapterVersion>
167167
<!-- Build tool dependencies -->

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"sdk": {
3-
"version": "8.0.100-alpha.1.22524.1"
3+
"version": "8.0.100-alpha.1.22480.9"
44
},
55
"tools": {
6-
"dotnet": "8.0.100-alpha.1.22524.1",
6+
"dotnet": "8.0.100-alpha.1.22480.9",
77
"runtimes": {
88
"dotnet/x86": [
99
"$(MicrosoftNETCoreBrowserDebugHostTransportVersion)"

src/Features/JsonPatch/src/Operations/Operation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Microsoft.AspNetCore.JsonPatch.Operations;
99

1010
public class Operation : OperationBase
1111
{
12-
[JsonProperty(nameof(value))]
12+
[JsonProperty("value")]
1313
public object value { get; set; }
1414

1515
public Operation()

src/Features/JsonPatch/src/Operations/OperationBase.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ public OperationType OperationType
2020
}
2121
}
2222

23-
[JsonProperty(nameof(path))]
23+
[JsonProperty("path")]
2424
public string path { get; set; }
2525

26-
[JsonProperty(nameof(op))]
26+
[JsonProperty("op")]
2727
public string op
2828
{
2929
get
@@ -42,7 +42,7 @@ public string op
4242
}
4343
}
4444

45-
[JsonProperty(nameof(from))]
45+
[JsonProperty("from")]
4646
public string from { get; set; }
4747

4848
public OperationBase()

src/Servers/Kestrel/Core/src/KestrelServerOptions.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,9 @@ internal void Serialize(Utf8JsonWriter writer)
252252
writer.WritePropertyName(nameof(AllowResponseHeaderCompression));
253253
writer.WriteBooleanValue(AllowResponseHeaderCompression);
254254

255+
writer.WritePropertyName(nameof(EnableAltSvc));
256+
writer.WriteBooleanValue(EnableAltSvc);
257+
255258
writer.WritePropertyName(nameof(IsDevCertLoaded));
256259
writer.WriteBooleanValue(IsDevCertLoaded);
257260

0 commit comments

Comments
 (0)