use AppSerializerContext singleton

This commit is contained in:
Vinzenz Schroeter 2024-04-30 10:42:46 +02:00 committed by RobbersDaughter
parent a2ae6d273e
commit 4b5288b237
2 changed files with 3 additions and 2 deletions

View file

@ -1,3 +1,4 @@
using System.Text.Json;
using System.Text.Json.Serialization;
namespace TanksServer.Interactivity;
@ -6,4 +7,5 @@ namespace TanksServer.Interactivity;
[JsonSerializable(typeof(IEnumerable<Player>))]
[JsonSerializable(typeof(IEnumerable<string>))]
[JsonSerializable(typeof(PlayerInfo))]
[JsonSourceGenerationOptions(JsonSerializerDefaults.Web)]
internal sealed partial class AppSerializerContext : JsonSerializerContext;