From 3b1a4c70503d0f8fb49a075b93da1e2ef3209b6a Mon Sep 17 00:00:00 2001 From: Scott Date: Sat, 5 Sep 2026 12:07:52 +1000 Subject: [PATCH] refactor: Remove byte order mark --- build/BuildContext.cs | 2 +- build/Helpers.cs | 2 +- build/Program.cs | 2 +- build/Scripts/CreateModuleManifest.ps1 | 2 +- build/Tasks/BuildTask.cs | 2 +- build/Tasks/CleanTask.cs | 2 +- build/Tasks/CopyOutputTask.cs | 2 +- build/Tasks/CreateBundleArchiveTask.cs | 2 +- build/Tasks/DefaultTask.cs | 2 +- build/Tasks/TagCommitTask.cs | 2 +- docs/GitRepositoryRegistration.md | 2 +- src/ModuleCore/ModuleCore.csproj | 4 +- .../Calendar/GetCalendarCommand.cs | 2 +- src/PowershellModule/Directory.Build.props | 2 +- .../Commands/GetGitRepoRegistrationCommand.cs | 2 +- .../Git/Commands/GitCommands.cs | 2 +- .../Commands/NewGitRepoRegistrationCommand.cs | 2 +- .../RemoveGitRepoRegistrationCommand.cs | 2 +- .../ShowGitRepoRegistrationCommand.cs | 2 +- src/PowershellModule/Git/GitProvider.cs | 2 +- src/PowershellModule/Git/GitPsDriveInfo.cs | 2 +- src/PowershellModule/PostBuild.ps1 | 2 +- src/PowershellModule/PowershellModule.csproj | 38 +++++++++---------- tests/ModuleTests/Calendar/BasicRenderTest.cs | 2 +- .../Calendar/MarkedDayRenderTests.cs | 2 +- .../Calendar/StartDayOfWeekTests.cs | 2 +- .../Calendar/TestData/CalendarTestDates.cs | 2 +- .../Calendar/TestData/CultureCodeTestData.cs | 2 +- .../BasicRenderTest/2026-06-01.verified.txt | 2 +- .../BasicRenderTest/2026-07-01.verified.txt | 2 +- .../BasicRenderTest/2026-08-01.verified.txt | 2 +- .../BasicRenderTest/cs-CZ.verified.txt | 2 +- .../BasicRenderTest/da-DK.verified.txt | 2 +- .../BasicRenderTest/en-AU.verified.txt | 2 +- .../BasicRenderTest/es-PR.verified.txt | 2 +- .../BasicRenderTest/fr-LU.verified.txt | 2 +- .../BasicRenderTest/nl-NL.verified.txt | 2 +- .../BasicRenderTest/te-IN.verified.txt | 2 +- .../DefaultMarkedDayRender.verified.txt | 2 +- .../DoubleWideMarkedDayRender.verified.txt | 2 +- .../EmojiMarkedDayRender.verified.txt | 2 +- .../LongMarkedDayRender.verified.txt | 2 +- .../SimpleMarkedDayRender.verified.txt | 2 +- .../StartOfDayRender.verified.txt | 2 +- tests/ModuleTests/Git/AddRegistrationTests.cs | 2 +- .../BasicRepoRegistration_0.verified.txt | 2 +- .../BasicRepoRegistration_1.verified.txt | 2 +- .../BasicRepoRegistration_2.verified.txt | 2 +- .../Git/TestData/AddRegistrationTestData.cs | 2 +- tests/ModuleTests/ModuleTests.csproj | 2 +- tests/ModuleTests/TestConstants.cs | 2 +- tests/ModuleTests/TestDataEnumerator.cs | 2 +- 52 files changed, 71 insertions(+), 71 deletions(-) diff --git a/build/BuildContext.cs b/build/BuildContext.cs index a2265a4..50c41ee 100644 --- a/build/BuildContext.cs +++ b/build/BuildContext.cs @@ -1,4 +1,4 @@ -using Cake.Common.IO; +using Cake.Common.IO; using Cake.Common.IO.Paths; using Cake.Core; using Cake.Core.IO; diff --git a/build/Helpers.cs b/build/Helpers.cs index 564c3e7..95855e6 100644 --- a/build/Helpers.cs +++ b/build/Helpers.cs @@ -1,4 +1,4 @@ -using System.Diagnostics; +using System.Diagnostics; using System.IO; using System.Text.RegularExpressions; diff --git a/build/Program.cs b/build/Program.cs index 1c348c5..4d9909c 100644 --- a/build/Program.cs +++ b/build/Program.cs @@ -9,7 +9,7 @@ public static class Program return new CakeHost() .UseContext() // Uncomment this if you don't want to set the suffix via the run profile program arguments - //.UseCakeSetting(nameof(BuildContext.BuildSuffix), "") + .UseCakeSetting(nameof(BuildContext.BuildSuffix), "pre-release") .Run(args); } } \ No newline at end of file diff --git a/build/Scripts/CreateModuleManifest.ps1 b/build/Scripts/CreateModuleManifest.ps1 index 740983d..d7dbd59 100644 --- a/build/Scripts/CreateModuleManifest.ps1 +++ b/build/Scripts/CreateModuleManifest.ps1 @@ -1,4 +1,4 @@ -param ( +param ( [string]$powershellModuleFileLocation, [string]$guid, [string]$author, diff --git a/build/Tasks/BuildTask.cs b/build/Tasks/BuildTask.cs index d11cc79..089ac75 100644 --- a/build/Tasks/BuildTask.cs +++ b/build/Tasks/BuildTask.cs @@ -1,4 +1,4 @@ -using Cake.Common.Tools.DotNet; +using Cake.Common.Tools.DotNet; using Cake.Common.Tools.DotNet.Build; using Cake.Common.Tools.DotNet.MSBuild; using Cake.Core.Diagnostics; diff --git a/build/Tasks/CleanTask.cs b/build/Tasks/CleanTask.cs index 36ab859..7335f97 100644 --- a/build/Tasks/CleanTask.cs +++ b/build/Tasks/CleanTask.cs @@ -1,4 +1,4 @@ -using Cake.Common; +using Cake.Common; using Cake.Common.Tools.DotNet; using Cake.Core.Diagnostics; using Cake.Frosting; diff --git a/build/Tasks/CopyOutputTask.cs b/build/Tasks/CopyOutputTask.cs index f51763a..9047fb2 100644 --- a/build/Tasks/CopyOutputTask.cs +++ b/build/Tasks/CopyOutputTask.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Collections.Generic; using System.Linq; using Cake.Core.Diagnostics; diff --git a/build/Tasks/CreateBundleArchiveTask.cs b/build/Tasks/CreateBundleArchiveTask.cs index 8cf82ec..52a2313 100644 --- a/build/Tasks/CreateBundleArchiveTask.cs +++ b/build/Tasks/CreateBundleArchiveTask.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Diagnostics; using System.IO; using System.IO.Compression; diff --git a/build/Tasks/DefaultTask.cs b/build/Tasks/DefaultTask.cs index 5b4fcef..217c75c 100644 --- a/build/Tasks/DefaultTask.cs +++ b/build/Tasks/DefaultTask.cs @@ -1,4 +1,4 @@ -using Cake.Core; +using Cake.Core; using Cake.Core.Diagnostics; using Cake.Frosting; diff --git a/build/Tasks/TagCommitTask.cs b/build/Tasks/TagCommitTask.cs index 324a6fc..35b53f8 100644 --- a/build/Tasks/TagCommitTask.cs +++ b/build/Tasks/TagCommitTask.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Diagnostics; using Cake.Core.Diagnostics; using Cake.Frosting; diff --git a/docs/GitRepositoryRegistration.md b/docs/GitRepositoryRegistration.md index 0f8a7c4..935dd8e 100644 --- a/docs/GitRepositoryRegistration.md +++ b/docs/GitRepositoryRegistration.md @@ -1,4 +1,4 @@ -# Git Repo Registration +# Git Repo Registration - all commands support `-debug` - at its simplest level these commands allow you to register a git repo against a simple name, and provide the ability to quickly pushd to a location diff --git a/src/ModuleCore/ModuleCore.csproj b/src/ModuleCore/ModuleCore.csproj index 81bd88b..dd723a8 100644 --- a/src/ModuleCore/ModuleCore.csproj +++ b/src/ModuleCore/ModuleCore.csproj @@ -1,4 +1,4 @@ - + net10.0 @@ -14,7 +14,7 @@ - + diff --git a/src/PowershellModule/Calendar/GetCalendarCommand.cs b/src/PowershellModule/Calendar/GetCalendarCommand.cs index f70d6e0..ff16bc3 100644 --- a/src/PowershellModule/Calendar/GetCalendarCommand.cs +++ b/src/PowershellModule/Calendar/GetCalendarCommand.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Globalization; using System.Management.Automation; using ModuleCore.Calendar; diff --git a/src/PowershellModule/Directory.Build.props b/src/PowershellModule/Directory.Build.props index e0bdda9..dd32fa3 100644 --- a/src/PowershellModule/Directory.Build.props +++ b/src/PowershellModule/Directory.Build.props @@ -1,4 +1,4 @@ - + 0.0.1 dev diff --git a/src/PowershellModule/Git/Commands/GetGitRepoRegistrationCommand.cs b/src/PowershellModule/Git/Commands/GetGitRepoRegistrationCommand.cs index d1885ec..1b5f193 100644 --- a/src/PowershellModule/Git/Commands/GetGitRepoRegistrationCommand.cs +++ b/src/PowershellModule/Git/Commands/GetGitRepoRegistrationCommand.cs @@ -1,4 +1,4 @@ -using System.Management.Automation; +using System.Management.Automation; using ModuleCore.Git; using ModuleCore.Git.Models; diff --git a/src/PowershellModule/Git/Commands/GitCommands.cs b/src/PowershellModule/Git/Commands/GitCommands.cs index 8dc36f6..7fe1856 100644 --- a/src/PowershellModule/Git/Commands/GitCommands.cs +++ b/src/PowershellModule/Git/Commands/GitCommands.cs @@ -1,4 +1,4 @@ -namespace PowershellModule.Git.Commands; +namespace PowershellModule.Git.Commands; public class GitCommands { diff --git a/src/PowershellModule/Git/Commands/NewGitRepoRegistrationCommand.cs b/src/PowershellModule/Git/Commands/NewGitRepoRegistrationCommand.cs index ec460eb..47578dd 100644 --- a/src/PowershellModule/Git/Commands/NewGitRepoRegistrationCommand.cs +++ b/src/PowershellModule/Git/Commands/NewGitRepoRegistrationCommand.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Management.Automation; using ModuleCore.Git; diff --git a/src/PowershellModule/Git/Commands/RemoveGitRepoRegistrationCommand.cs b/src/PowershellModule/Git/Commands/RemoveGitRepoRegistrationCommand.cs index 36b192e..bfd1834 100644 --- a/src/PowershellModule/Git/Commands/RemoveGitRepoRegistrationCommand.cs +++ b/src/PowershellModule/Git/Commands/RemoveGitRepoRegistrationCommand.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Management.Automation; using ModuleCore.Git; diff --git a/src/PowershellModule/Git/Commands/ShowGitRepoRegistrationCommand.cs b/src/PowershellModule/Git/Commands/ShowGitRepoRegistrationCommand.cs index 61b7561..a0e6e85 100644 --- a/src/PowershellModule/Git/Commands/ShowGitRepoRegistrationCommand.cs +++ b/src/PowershellModule/Git/Commands/ShowGitRepoRegistrationCommand.cs @@ -1,4 +1,4 @@ -using System.Management.Automation; +using System.Management.Automation; using ModuleCore.Git; namespace PowershellModule.Git.Commands; diff --git a/src/PowershellModule/Git/GitProvider.cs b/src/PowershellModule/Git/GitProvider.cs index 7d643ee..b9ece49 100644 --- a/src/PowershellModule/Git/GitProvider.cs +++ b/src/PowershellModule/Git/GitProvider.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Management.Automation; using System.Management.Automation.Provider; diff --git a/src/PowershellModule/Git/GitPsDriveInfo.cs b/src/PowershellModule/Git/GitPsDriveInfo.cs index 7b0d691..b1c761d 100644 --- a/src/PowershellModule/Git/GitPsDriveInfo.cs +++ b/src/PowershellModule/Git/GitPsDriveInfo.cs @@ -1,4 +1,4 @@ -using System.Management.Automation; +using System.Management.Automation; namespace PowershellModule.Git; diff --git a/src/PowershellModule/PostBuild.ps1 b/src/PowershellModule/PostBuild.ps1 index cb7b8de..518b78a 100644 --- a/src/PowershellModule/PostBuild.ps1 +++ b/src/PowershellModule/PostBuild.ps1 @@ -1,4 +1,4 @@ -<# +<# .SYNOPSIS Removes all non-core files from build output #> diff --git a/src/PowershellModule/PowershellModule.csproj b/src/PowershellModule/PowershellModule.csproj index 56f10c3..7cb5192 100644 --- a/src/PowershellModule/PowershellModule.csproj +++ b/src/PowershellModule/PowershellModule.csproj @@ -1,25 +1,25 @@ - - net10.0 - PowershellModule - latestmajor - enable - true - + + net10.0 + PowershellModule + latestmajor + enable + true + - - - All - - - + + + All + + + - - - + + + - - - + + + diff --git a/tests/ModuleTests/Calendar/BasicRenderTest.cs b/tests/ModuleTests/Calendar/BasicRenderTest.cs index 3bc791f..b08f0bd 100644 --- a/tests/ModuleTests/Calendar/BasicRenderTest.cs +++ b/tests/ModuleTests/Calendar/BasicRenderTest.cs @@ -1,4 +1,4 @@ -using ModuleCore.Calendar; +using ModuleCore.Calendar; using ModuleTests.Calendar.TestData; using System.Globalization; diff --git a/tests/ModuleTests/Calendar/MarkedDayRenderTests.cs b/tests/ModuleTests/Calendar/MarkedDayRenderTests.cs index 24af2ce..a169518 100644 --- a/tests/ModuleTests/Calendar/MarkedDayRenderTests.cs +++ b/tests/ModuleTests/Calendar/MarkedDayRenderTests.cs @@ -1,4 +1,4 @@ -using System.Text; +using System.Text; using ModuleCore.Calendar; namespace ModuleTests.Calendar; diff --git a/tests/ModuleTests/Calendar/StartDayOfWeekTests.cs b/tests/ModuleTests/Calendar/StartDayOfWeekTests.cs index c6680c7..fb4c52c 100644 --- a/tests/ModuleTests/Calendar/StartDayOfWeekTests.cs +++ b/tests/ModuleTests/Calendar/StartDayOfWeekTests.cs @@ -1,4 +1,4 @@ -using System.Text; +using System.Text; using ModuleCore.Calendar; namespace ModuleTests.Calendar; diff --git a/tests/ModuleTests/Calendar/TestData/CalendarTestDates.cs b/tests/ModuleTests/Calendar/TestData/CalendarTestDates.cs index 189b4a4..3c5b048 100644 --- a/tests/ModuleTests/Calendar/TestData/CalendarTestDates.cs +++ b/tests/ModuleTests/Calendar/TestData/CalendarTestDates.cs @@ -1,4 +1,4 @@ -namespace ModuleTests.Calendar.TestData; +namespace ModuleTests.Calendar.TestData; public class CalendarTestDates : TestDataEnumerator { diff --git a/tests/ModuleTests/Calendar/TestData/CultureCodeTestData.cs b/tests/ModuleTests/Calendar/TestData/CultureCodeTestData.cs index 9bdf1f0..f72e6c3 100644 --- a/tests/ModuleTests/Calendar/TestData/CultureCodeTestData.cs +++ b/tests/ModuleTests/Calendar/TestData/CultureCodeTestData.cs @@ -1,4 +1,4 @@ -namespace ModuleTests.Calendar.TestData; +namespace ModuleTests.Calendar.TestData; public class CultureCodeTestData : TestDataEnumerator { diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-06-01.verified.txt b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-06-01.verified.txt index de75dd0..39f169d 100644 --- a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-06-01.verified.txt +++ b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-06-01.verified.txt @@ -1,4 +1,4 @@ -┌─────────────────────────────────────────┐ +┌─────────────────────────────────────────┐ │ June 2026 │ ├─────┬─────┬─────┬─────┬─────┬─────┬─────┤ │ Mon │ Tue │ Wed │ Thu │ Fri │ Sat │ Sun │ diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-07-01.verified.txt b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-07-01.verified.txt index a74744c..0f44012 100644 --- a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-07-01.verified.txt +++ b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-07-01.verified.txt @@ -1,4 +1,4 @@ -┌─────────────────────────────────────────┐ +┌─────────────────────────────────────────┐ │ July 2026 │ ├─────┬─────┬─────┬─────┬─────┬─────┬─────┤ │ Mon │ Tue │ Wed │ Thu │ Fri │ Sat │ Sun │ diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-08-01.verified.txt b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-08-01.verified.txt index 9598b49..f3c1199 100644 --- a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-08-01.verified.txt +++ b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/2026-08-01.verified.txt @@ -1,4 +1,4 @@ -┌─────────────────────────────────────────┐ +┌─────────────────────────────────────────┐ │ August 2026 │ ├─────┬─────┬─────┬─────┬─────┬─────┬─────┤ │ Mon │ Tue │ Wed │ Thu │ Fri │ Sat │ Sun │ diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/cs-CZ.verified.txt b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/cs-CZ.verified.txt index 797c58a..a1a264b 100644 --- a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/cs-CZ.verified.txt +++ b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/cs-CZ.verified.txt @@ -1,4 +1,4 @@ -┌──────────────────────────────────┐ +┌──────────────────────────────────┐ │ srpen 2026 │ ├────┬────┬────┬────┬────┬────┬────┤ │ po │ út │ st │ čt │ pá │ so │ ne │ diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/da-DK.verified.txt b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/da-DK.verified.txt index 58618a1..d69d3f7 100644 --- a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/da-DK.verified.txt +++ b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/da-DK.verified.txt @@ -1,4 +1,4 @@ -┌─────────────────────────────────────────┐ +┌─────────────────────────────────────────┐ │ august 2026 │ ├─────┬─────┬─────┬─────┬─────┬─────┬─────┤ │ man │ tir │ ons │ tor │ fre │ lør │ søn │ diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/en-AU.verified.txt b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/en-AU.verified.txt index 9598b49..f3c1199 100644 --- a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/en-AU.verified.txt +++ b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/en-AU.verified.txt @@ -1,4 +1,4 @@ -┌─────────────────────────────────────────┐ +┌─────────────────────────────────────────┐ │ August 2026 │ ├─────┬─────┬─────┬─────┬─────┬─────┬─────┤ │ Mon │ Tue │ Wed │ Thu │ Fri │ Sat │ Sun │ diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/es-PR.verified.txt b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/es-PR.verified.txt index 9395157..4a4de20 100644 --- a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/es-PR.verified.txt +++ b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/es-PR.verified.txt @@ -1,4 +1,4 @@ -┌────────────────────────────────────────────────┐ +┌────────────────────────────────────────────────┐ │ agosto 2026 │ ├──────┬──────┬──────┬──────┬──────┬──────┬──────┤ │ lun. │ mar. │ mié. │ jue. │ vie. │ sáb. │ dom. │ diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/fr-LU.verified.txt b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/fr-LU.verified.txt index 101ef77..9a7e138 100644 --- a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/fr-LU.verified.txt +++ b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/fr-LU.verified.txt @@ -1,4 +1,4 @@ -┌────────────────────────────────────────────────┐ +┌────────────────────────────────────────────────┐ │ août 2026 │ ├──────┬──────┬──────┬──────┬──────┬──────┬──────┤ │ lun. │ mar. │ mer. │ jeu. │ ven. │ sam. │ dim. │ diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/nl-NL.verified.txt b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/nl-NL.verified.txt index 1aac604..2a9615a 100644 --- a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/nl-NL.verified.txt +++ b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/nl-NL.verified.txt @@ -1,4 +1,4 @@ -┌──────────────────────────────────┐ +┌──────────────────────────────────┐ │ augustus 2026 │ ├────┬────┬────┬────┬────┬────┬────┤ │ ma │ di │ wo │ do │ vr │ za │ zo │ diff --git a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/te-IN.verified.txt b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/te-IN.verified.txt index 5568a20..bee6c08 100644 --- a/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/te-IN.verified.txt +++ b/tests/ModuleTests/Calendar/snapshots/BasicRenderTest/te-IN.verified.txt @@ -1,4 +1,4 @@ -┌───────────────────────────────────────────────────────┐ +┌───────────────────────────────────────────────────────┐ │ ఆగస్టు 2026 │ ├───────┬───────┬───────┬───────┬───────┬───────┬───────┤ │ సోమ │ మంగళ │ బుధ │ గురు │ శుక్ర │ శని │ ఆది │ diff --git a/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/DefaultMarkedDayRender.verified.txt b/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/DefaultMarkedDayRender.verified.txt index 4181cc1..a134a32 100644 --- a/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/DefaultMarkedDayRender.verified.txt +++ b/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/DefaultMarkedDayRender.verified.txt @@ -1,4 +1,4 @@ -┌─────────────────────────────────────────┐ +┌─────────────────────────────────────────┐ │ August 2026 │ ├─────┬─────┬─────┬─────┬─────┬─────┬─────┤ │ Mon │ Tue │ Wed │ Thu │ Fri │ Sat │ Sun │ diff --git a/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/DoubleWideMarkedDayRender.verified.txt b/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/DoubleWideMarkedDayRender.verified.txt index cc27f4f..3fb6ad7 100644 --- a/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/DoubleWideMarkedDayRender.verified.txt +++ b/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/DoubleWideMarkedDayRender.verified.txt @@ -1,4 +1,4 @@ -Double-wide characters will display incorrectly but still tested until rendering can be improved +Double-wide characters will display incorrectly but still tested until rendering can be improved ┌─────────────────────────────────────────┐ │ August 2026 │ ├─────┬─────┬─────┬─────┬─────┬─────┬─────┤ diff --git a/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/EmojiMarkedDayRender.verified.txt b/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/EmojiMarkedDayRender.verified.txt index a02a725..fc7c092 100644 --- a/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/EmojiMarkedDayRender.verified.txt +++ b/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/EmojiMarkedDayRender.verified.txt @@ -1,4 +1,4 @@ -Emojis will display incorrectly in text but output correctly in terminals with UTF-8 encoding. +Emojis will display incorrectly in text but output correctly in terminals with UTF-8 encoding. ┌─────────────────────────────────────────┐ │ August 2026 │ ├─────┬─────┬─────┬─────┬─────┬─────┬─────┤ diff --git a/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/LongMarkedDayRender.verified.txt b/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/LongMarkedDayRender.verified.txt index a8ebbf6..14e0523 100644 --- a/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/LongMarkedDayRender.verified.txt +++ b/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/LongMarkedDayRender.verified.txt @@ -1,4 +1,4 @@ -┌──────────────────────────────────────────────────────────────┐ +┌──────────────────────────────────────────────────────────────┐ │ August 2026 │ ├────────┬────────┬────────┬────────┬────────┬────────┬────────┤ │ Mon │ Tue │ Wed │ Thu │ Fri │ Sat │ Sun │ diff --git a/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/SimpleMarkedDayRender.verified.txt b/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/SimpleMarkedDayRender.verified.txt index f546aac..007bfcb 100644 --- a/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/SimpleMarkedDayRender.verified.txt +++ b/tests/ModuleTests/Calendar/snapshots/MarkedDayRenderTests/SimpleMarkedDayRender.verified.txt @@ -1,4 +1,4 @@ -┌─────────────────────────────────────────┐ +┌─────────────────────────────────────────┐ │ August 2026 │ ├─────┬─────┬─────┬─────┬─────┬─────┬─────┤ │ Mon │ Tue │ Wed │ Thu │ Fri │ Sat │ Sun │ diff --git a/tests/ModuleTests/Calendar/snapshots/StartDayOfWeekTests/StartOfDayRender.verified.txt b/tests/ModuleTests/Calendar/snapshots/StartDayOfWeekTests/StartOfDayRender.verified.txt index 8393453..aaa4fa5 100644 --- a/tests/ModuleTests/Calendar/snapshots/StartDayOfWeekTests/StartOfDayRender.verified.txt +++ b/tests/ModuleTests/Calendar/snapshots/StartDayOfWeekTests/StartOfDayRender.verified.txt @@ -1,4 +1,4 @@ -Start Day: Sunday +Start Day: Sunday ┌─────────────────────────────────────────┐ │ August 2026 │ ├─────┬─────┬─────┬─────┬─────┬─────┬─────┤ diff --git a/tests/ModuleTests/Git/AddRegistrationTests.cs b/tests/ModuleTests/Git/AddRegistrationTests.cs index 511833a..6c5d2a2 100644 --- a/tests/ModuleTests/Git/AddRegistrationTests.cs +++ b/tests/ModuleTests/Git/AddRegistrationTests.cs @@ -1,4 +1,4 @@ -using System.Text; +using System.Text; using ModuleCore.Calendar; using ModuleCore.Git; using ModuleTests.Git.TestData; diff --git a/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_0.verified.txt b/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_0.verified.txt index 3183455..ee51d39 100644 --- a/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_0.verified.txt +++ b/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_0.verified.txt @@ -1,2 +1,2 @@ -Attempted to register: test +Attempted to register: test Registration result: test diff --git a/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_1.verified.txt b/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_1.verified.txt index e9b945d..628d265 100644 --- a/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_1.verified.txt +++ b/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_1.verified.txt @@ -1,2 +1,2 @@ -Attempted to register: test\path +Attempted to register: test\path Registration result: test\path diff --git a/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_2.verified.txt b/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_2.verified.txt index 7f2c4e6..1b9406e 100644 --- a/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_2.verified.txt +++ b/tests/ModuleTests/Git/Snapshots/AddRegistrationTests/BasicRepoRegistration_2.verified.txt @@ -1,2 +1,2 @@ -Attempted to register: other/path +Attempted to register: other/path Registration result: other/path diff --git a/tests/ModuleTests/Git/TestData/AddRegistrationTestData.cs b/tests/ModuleTests/Git/TestData/AddRegistrationTestData.cs index 3668ba2..2d44e39 100644 --- a/tests/ModuleTests/Git/TestData/AddRegistrationTestData.cs +++ b/tests/ModuleTests/Git/TestData/AddRegistrationTestData.cs @@ -1,4 +1,4 @@ -using System.Linq; +using System.Linq; namespace ModuleTests.Git.TestData; diff --git a/tests/ModuleTests/ModuleTests.csproj b/tests/ModuleTests/ModuleTests.csproj index 7343cfd..4b97606 100644 --- a/tests/ModuleTests/ModuleTests.csproj +++ b/tests/ModuleTests/ModuleTests.csproj @@ -1,4 +1,4 @@ - + net10.0 diff --git a/tests/ModuleTests/TestConstants.cs b/tests/ModuleTests/TestConstants.cs index e32b3cd..812da26 100644 --- a/tests/ModuleTests/TestConstants.cs +++ b/tests/ModuleTests/TestConstants.cs @@ -1,4 +1,4 @@ -namespace ModuleTests; +namespace ModuleTests; public class TestConstants { diff --git a/tests/ModuleTests/TestDataEnumerator.cs b/tests/ModuleTests/TestDataEnumerator.cs index 92937f5..f756af4 100644 --- a/tests/ModuleTests/TestDataEnumerator.cs +++ b/tests/ModuleTests/TestDataEnumerator.cs @@ -1,4 +1,4 @@ -using System.Collections; +using System.Collections; namespace ModuleTests;