From 0ff99db5d0c136925aefd12e9b35d379aea4dd8c Mon Sep 17 00:00:00 2001 From: CIS Guru Date: Sun, 28 Dec 2025 18:27:21 -0600 Subject: [PATCH 1/2] Configure all projects for solution file. --- Aquiis.sln | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Aquiis.sln b/Aquiis.sln index 1f46f04..be5fdad 100644 --- a/Aquiis.sln +++ b/Aquiis.sln @@ -5,7 +5,7 @@ VisualStudioVersion = 17.5.2.0 MinimumVisualStudioVersion = 10.0.40219.1 Project("{C69B6EFE-BB20-41DE-8CBA-044207EBDCE1}") = "Aquiis.SimpleStart", "Aquiis.SimpleStart\Aquiis.SimpleStart.csproj", "{C69B6EFE-BB20-41DE-8CBA-044207EBDCE1}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Aquiis.Tests", "Aquiis.SimpleStart.UI.Tests\Aquiis.SimpleStart.UI.Tests.csproj", "{81401A51-BBA1-4B6B-8771-9C26A7B5356E}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Aquiis.SimpleStart.UI.Tests", "Aquiis.SimpleStart.UI.Tests\Aquiis.SimpleStart.UI.Tests.csproj", "{81401A51-BBA1-4B6B-8771-9C26A7B5356E}" EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Aquiis.SimpleStart.Tests", "Aquiis.SimpleStart.Tests\Aquiis.SimpleStart.Tests.csproj", "{D1111111-1111-4111-8111-111111111111}" EndProject @@ -19,6 +19,7 @@ Global Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C69B6EFE-BB20-41DE-8CBA-044207EBDCE1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {C69B6EFE-BB20-41DE-8CBA-044207EBDCE1}.Debug|Any CPU.Build.0 = Debug|Any CPU {C69B6EFE-BB20-41DE-8CBA-044207EBDCE1}.Debug|x64.ActiveCfg = Debug|x64 @@ -31,6 +32,18 @@ Global {C69B6EFE-BB20-41DE-8CBA-044207EBDCE1}.Release|x64.Build.0 = Release|x64 {C69B6EFE-BB20-41DE-8CBA-044207EBDCE1}.Release|x86.ActiveCfg = Release|x86 {C69B6EFE-BB20-41DE-8CBA-044207EBDCE1}.Release|x86.Build.0 = Release|x86 + {D1111111-1111-4111-8111-111111111111}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D1111111-1111-4111-8111-111111111111}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D1111111-1111-4111-8111-111111111111}.Debug|x64.ActiveCfg = Debug|Any CPU + {D1111111-1111-4111-8111-111111111111}.Debug|x64.Build.0 = Debug|Any CPU + {D1111111-1111-4111-8111-111111111111}.Debug|x86.ActiveCfg = Debug|Any CPU + {D1111111-1111-4111-8111-111111111111}.Debug|x86.Build.0 = Debug|Any CPU + {D1111111-1111-4111-8111-111111111111}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D1111111-1111-4111-8111-111111111111}.Release|Any CPU.Build.0 = Release|Any CPU + {D1111111-1111-4111-8111-111111111111}.Release|x64.ActiveCfg = Release|Any CPU + {D1111111-1111-4111-8111-111111111111}.Release|x64.Build.0 = Release|Any CPU + {D1111111-1111-4111-8111-111111111111}.Release|x86.ActiveCfg = Release|Any CPU + {D1111111-1111-4111-8111-111111111111}.Release|x86.Build.0 = Release|Any CPU {81401A51-BBA1-4B6B-8771-9C26A7B5356E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {81401A51-BBA1-4B6B-8771-9C26A7B5356E}.Debug|Any CPU.Build.0 = Debug|Any CPU {81401A51-BBA1-4B6B-8771-9C26A7B5356E}.Debug|x64.ActiveCfg = Debug|Any CPU @@ -43,6 +56,7 @@ Global {81401A51-BBA1-4B6B-8771-9C26A7B5356E}.Release|x64.Build.0 = Release|Any CPU {81401A51-BBA1-4B6B-8771-9C26A7B5356E}.Release|x86.ActiveCfg = Release|Any CPU {81401A51-BBA1-4B6B-8771-9C26A7B5356E}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE From cab872a29e911fcc3a0b6bb52197ac602826c3e2 Mon Sep 17 00:00:00 2001 From: CIS Guru Date: Sun, 28 Dec 2025 21:19:23 -0600 Subject: [PATCH 2/2] Refactor CI.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2f1c7ee..ed4926f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,4 +26,4 @@ jobs: run: dotnet build Aquiis.sln --no-restore --configuration Release - name: Run focused tests - run: dotnet test Aquiis.SimpleStart.Tests/Aquiis.SimpleStart.Tests.csproj --no-build --verbosity normal + run: dotnet test Aquiis.SimpleStart.Tests/Aquiis.SimpleStart.Tests.csproj --no-build --configuration Release --verbosity normal