File tree 5 files changed +10
-7
lines changed
Features/JsonPatch/src/Operations
5 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 161
161
<PropertyGroup Label =" Manual" >
162
162
<!-- Bumping the Roslyn version used in order to ingest the new runtime source generators -->
163
163
<UsingToolMicrosoftNetCompilers >true</UsingToolMicrosoftNetCompilers >
164
- <MicrosoftNetCompilersToolsetVersion >4.5 .0-1.22517.9 </MicrosoftNetCompilersToolsetVersion >
164
+ <MicrosoftNetCompilersToolsetVersion >4.4 .0-3.22452.8 </MicrosoftNetCompilersToolsetVersion >
165
165
<!-- DiagnosticAdapter package pinned temporarily until migrated/deprecated -->
166
166
<MicrosoftExtensionsDiagnosticAdapterVersion >5.0.0-preview.4.20180.4</MicrosoftExtensionsDiagnosticAdapterVersion >
167
167
<!-- Build tool dependencies -->
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 8.0.100-alpha.1.22524.1 "
3
+ "version" : " 8.0.100-alpha.1.22480.9 "
4
4
},
5
5
"tools" : {
6
- "dotnet" : " 8.0.100-alpha.1.22524.1 " ,
6
+ "dotnet" : " 8.0.100-alpha.1.22480.9 " ,
7
7
"runtimes" : {
8
8
"dotnet/x86" : [
9
9
" $(MicrosoftNETCoreBrowserDebugHostTransportVersion)"
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace Microsoft.AspNetCore.JsonPatch.Operations;
9
9
10
10
public class Operation : OperationBase
11
11
{
12
- [ JsonProperty ( nameof ( value ) ) ]
12
+ [ JsonProperty ( " value" ) ]
13
13
public object value { get ; set ; }
14
14
15
15
public Operation ( )
Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ public OperationType OperationType
20
20
}
21
21
}
22
22
23
- [ JsonProperty ( nameof ( path ) ) ]
23
+ [ JsonProperty ( " path" ) ]
24
24
public string path { get ; set ; }
25
25
26
- [ JsonProperty ( nameof ( op ) ) ]
26
+ [ JsonProperty ( "op" ) ]
27
27
public string op
28
28
{
29
29
get
@@ -42,7 +42,7 @@ public string op
42
42
}
43
43
}
44
44
45
- [ JsonProperty ( nameof ( from ) ) ]
45
+ [ JsonProperty ( " from" ) ]
46
46
public string from { get ; set ; }
47
47
48
48
public OperationBase ( )
Original file line number Diff line number Diff line change @@ -252,6 +252,9 @@ internal void Serialize(Utf8JsonWriter writer)
252
252
writer . WritePropertyName ( nameof ( AllowResponseHeaderCompression ) ) ;
253
253
writer . WriteBooleanValue ( AllowResponseHeaderCompression ) ;
254
254
255
+ writer . WritePropertyName ( nameof ( EnableAltSvc ) ) ;
256
+ writer . WriteBooleanValue ( EnableAltSvc ) ;
257
+
255
258
writer . WritePropertyName ( nameof ( IsDevCertLoaded ) ) ;
256
259
writer . WriteBooleanValue ( IsDevCertLoaded ) ;
257
260
You can’t perform that action at this time.
0 commit comments