Skip to content

Commit

Permalink
Fix oscparameternodeend
Browse files Browse the repository at this point in the history
  • Loading branch information
LucHeart committed Sep 30, 2024
1 parent d6aff25 commit 0a71ee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OscQueryLibrary/Models/JsonSourceGenerators.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ namespace OscQueryLibrary.Models;
[JsonSerializable(typeof(RootNode))]
[JsonSerializable(typeof(AvatarContents))]
[JsonSerializable(typeof(OscParameterNode))]
[JsonSerializable(typeof(OscParameterNodeEnd<>))]
[JsonSerializable(typeof(OscParameterNodeEnd<string>))] // We need to specify generic type <T> here, otherwise we get a warning about it ignoring this
[JsonSourceGenerationOptions(GenerationMode = JsonSourceGenerationMode.Default, WriteIndented = true, AllowTrailingCommas = true)]
internal partial class ModelsSourceGenerationContext : JsonSerializerContext;

0 comments on commit 0a71ee9

Please sign in to comment.