Skip to content

Commit 49c4a15

Browse files
Ensure serializer reflection-dependency sentinel is accurate (#67104)
* Ensure serializer reflection-dependency sentinel is accurate * update servicing version Co-authored-by: Carlos Sanchez <[email protected]>
1 parent 6042996 commit 49c4a15

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/libraries/System.Text.Json/src/System.Text.Json.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
<Nullable>enable</Nullable>
1010
<IncludeInternalObsoleteAttribute>true</IncludeInternalObsoleteAttribute>
1111
<IsPackable>true</IsPackable>
12-
<ServicingVersion>3</ServicingVersion>
12+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
13+
<ServicingVersion>4</ServicingVersion>
1314
<PackageDescription>Provides high-performance and low-allocating types that serialize objects to JavaScript Object Notation (JSON) text and deserialize JSON text to objects, with UTF-8 support built-in. Also provides types to read and write JSON text encoded as UTF-8, and to create an in-memory document object model (DOM), that is read-only, for random access of the JSON elements within a structured view of the data.
1415

1516
Commonly Used Types:

src/libraries/System.Text.Json/src/System/Text/Json/Serialization/JsonSerializerOptions.Converters.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
using System.Text.Json.Serialization;
1111
using System.Text.Json.Serialization.Converters;
1212
using System.Text.Json.Serialization.Metadata;
13+
using System.Threading;
1314

1415
namespace System.Text.Json
1516
{
@@ -30,10 +31,10 @@ public sealed partial class JsonSerializerOptions
3031
[RequiresUnreferencedCode(JsonSerializer.SerializationUnreferencedCodeMessage)]
3132
private void RootBuiltInConverters()
3233
{
33-
if (s_defaultSimpleConverters is null)
34+
if (Volatile.Read(ref s_defaultFactoryConverters) is null)
3435
{
3536
s_defaultSimpleConverters = GetDefaultSimpleConverters();
36-
s_defaultFactoryConverters = new JsonConverter[]
37+
Volatile.Write(ref s_defaultFactoryConverters, new JsonConverter[]
3738
{
3839
// Check for disallowed types.
3940
new UnsupportedTypeConverterFactory(),
@@ -48,7 +49,7 @@ private void RootBuiltInConverters()
4849
new IEnumerableConverterFactory(),
4950
// Object should always be last since it converts any type.
5051
new ObjectConverterFactory()
51-
};
52+
});
5253
}
5354
}
5455

0 commit comments

Comments
 (0)