more dotnet 10 updates (#2676)

* update more libraries to dotnet 10

* fix dockerfiles

* fix numeric types
This commit is contained in:
Jason Dove
2025-11-29 15:47:08 -06:00
committed by GitHub
parent f101d0b366
commit 7bd8cefe2e
41 changed files with 725 additions and 431 deletions
@@ -0,0 +1,9 @@
using System.ComponentModel;
namespace ErsatzTV.Core.Api.ScriptedPlayout;
public record ControlGraphicsOff
{
[Description("A list of graphics elements to turn off. All graphics elements will be turned off if this list is null or empty")]
public List<string> Graphics { get; set; } = [];
}