From c9a7c6c3092f789a7bb48dcae912ba72a4a0d807 Mon Sep 17 00:00:00 2001 From: Tony Bark <35226681+tonytins@users.noreply.github.com> Date: Wed, 7 Jan 2026 03:05:25 -0500 Subject: [PATCH] Update dependencies and clean up UIText.cs - Upgraded test project to .NET 10.0 - Bumped dependency packages to their latest releases. - Added DotNet.ReproducibleBuilds to both projects. --- CSTNet.Tests/CSTNet.Tests.csproj | 11 ++++++----- CSTNet/CSTNet.csproj | 3 +++ CSTNet/UIText.cs | 2 -- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CSTNet.Tests/CSTNet.Tests.csproj b/CSTNet.Tests/CSTNet.Tests.csproj index faee7a8..89a4bfb 100644 --- a/CSTNet.Tests/CSTNet.Tests.csproj +++ b/CSTNet.Tests/CSTNet.Tests.csproj @@ -1,23 +1,24 @@ - net8.0 + net10.0 enable enable false - - - + + + runtime; build; native; contentfiles; analyzers; buildtransitive all - + runtime; build; native; contentfiles; analyzers; buildtransitive all + diff --git a/CSTNet/CSTNet.csproj b/CSTNet/CSTNet.csproj index 684e0cc..69dc028 100644 --- a/CSTNet/CSTNet.csproj +++ b/CSTNet/CSTNet.csproj @@ -21,5 +21,8 @@ true + + + \ No newline at end of file diff --git a/CSTNet/UIText.cs b/CSTNet/UIText.cs index 3eedaa7..8b3ca2f 100644 --- a/CSTNet/UIText.cs +++ b/CSTNet/UIText.cs @@ -64,7 +64,5 @@ public class UIText : IUIText return files.Any() ? CST.Parse(File.ReadAllText(files.First()), key) : "***MISSING***"; } - - }