From 0a71ee97fe49514b0ec675a173d267ff736c0ae5 Mon Sep 17 00:00:00 2001 From: Luca Date: Mon, 30 Sep 2024 13:32:15 +0200 Subject: [PATCH] Fix oscparameternodeend --- OscQueryLibrary/Models/JsonSourceGenerators.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OscQueryLibrary/Models/JsonSourceGenerators.cs b/OscQueryLibrary/Models/JsonSourceGenerators.cs index fa2bb7b..e4fe148 100644 --- a/OscQueryLibrary/Models/JsonSourceGenerators.cs +++ b/OscQueryLibrary/Models/JsonSourceGenerators.cs @@ -8,6 +8,6 @@ namespace OscQueryLibrary.Models; [JsonSerializable(typeof(RootNode))] [JsonSerializable(typeof(AvatarContents))] [JsonSerializable(typeof(OscParameterNode))] -[JsonSerializable(typeof(OscParameterNodeEnd<>))] +[JsonSerializable(typeof(OscParameterNodeEnd))] // We need to specify generic type here, otherwise we get a warning about it ignoring this [JsonSourceGenerationOptions(GenerationMode = JsonSourceGenerationMode.Default, WriteIndented = true, AllowTrailingCommas = true)] internal partial class ModelsSourceGenerationContext : JsonSerializerContext; \ No newline at end of file