diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index c86565a0..049d98cb 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -29,5 +29,5 @@ jobs:
dotnet-version: ${{ matrix.dotnet-version }}
- uses: ./
with:
- solutionPath: TestSolutions/TestSolution${{ matrix.dotnet-version }}/TestSolution${{ matrix.dotnet-version }}.sln
+ solutionPath: TestSolution/TestSolution.sln
failOnIssue: '0'
diff --git a/TestSolutions/TestSolution5.0/TestConsoleApp/Program.cs b/TestSolution/TestConsoleApp/Program.cs
similarity index 100%
rename from TestSolutions/TestSolution5.0/TestConsoleApp/Program.cs
rename to TestSolution/TestConsoleApp/Program.cs
diff --git a/TestSolutions/TestSolution3.1/TestConsoleApp/TestConsoleApp.csproj b/TestSolution/TestConsoleApp/TestConsoleApp.csproj
similarity index 68%
rename from TestSolutions/TestSolution3.1/TestConsoleApp/TestConsoleApp.csproj
rename to TestSolution/TestConsoleApp/TestConsoleApp.csproj
index c73e0d16..d6e20636 100644
--- a/TestSolutions/TestSolution3.1/TestConsoleApp/TestConsoleApp.csproj
+++ b/TestSolution/TestConsoleApp/TestConsoleApp.csproj
@@ -2,7 +2,7 @@
Exe
- netcoreapp3.1
+ netstandard2.1
diff --git a/TestSolutions/TestSolution3.1/TestSolution3.1.sln b/TestSolution/TestSolution.sln
similarity index 100%
rename from TestSolutions/TestSolution3.1/TestSolution3.1.sln
rename to TestSolution/TestSolution.sln
diff --git a/TestSolutions/TestSolution3.1/TestConsoleApp/Program.cs b/TestSolutions/TestSolution3.1/TestConsoleApp/Program.cs
deleted file mode 100644
index f436e391..00000000
--- a/TestSolutions/TestSolution3.1/TestConsoleApp/Program.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-using System;
-
-namespace TestConsoleApp
-{
- class Program
- {
- public static public static int canBePrivate = "hello"; canBePrivate = "hello";
-
- private static int unusedField = 0;
-
- static void Main(string[] args)
- {
- var unusedVariable = 1;
-
- Console.WriteLine(canBePrivate);
- }
- }
-}
diff --git a/TestSolutions/TestSolution5.0/TestConsoleApp/TestConsoleApp.csproj b/TestSolutions/TestSolution5.0/TestConsoleApp/TestConsoleApp.csproj
deleted file mode 100644
index 20827042..00000000
--- a/TestSolutions/TestSolution5.0/TestConsoleApp/TestConsoleApp.csproj
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
- Exe
- net5.0
-
-
-
diff --git a/TestSolutions/TestSolution5.0/TestSolution5.0.sln b/TestSolutions/TestSolution5.0/TestSolution5.0.sln
deleted file mode 100644
index 7947ec06..00000000
--- a/TestSolutions/TestSolution5.0/TestSolution5.0.sln
+++ /dev/null
@@ -1,34 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio 15
-VisualStudioVersion = 15.0.26124.0
-MinimumVisualStudioVersion = 15.0.26124.0
-Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestConsoleApp", "TestConsoleApp\TestConsoleApp.csproj", "{BBF781D4-C847-44C0-BBC3-79C2F264F63C}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|Any CPU = Debug|Any CPU
- Debug|x64 = Debug|x64
- Debug|x86 = Debug|x86
- Release|Any CPU = Release|Any CPU
- Release|x64 = Release|x64
- Release|x86 = Release|x86
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {BBF781D4-C847-44C0-BBC3-79C2F264F63C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
- {BBF781D4-C847-44C0-BBC3-79C2F264F63C}.Debug|Any CPU.Build.0 = Debug|Any CPU
- {BBF781D4-C847-44C0-BBC3-79C2F264F63C}.Debug|x64.ActiveCfg = Debug|Any CPU
- {BBF781D4-C847-44C0-BBC3-79C2F264F63C}.Debug|x64.Build.0 = Debug|Any CPU
- {BBF781D4-C847-44C0-BBC3-79C2F264F63C}.Debug|x86.ActiveCfg = Debug|Any CPU
- {BBF781D4-C847-44C0-BBC3-79C2F264F63C}.Debug|x86.Build.0 = Debug|Any CPU
- {BBF781D4-C847-44C0-BBC3-79C2F264F63C}.Release|Any CPU.ActiveCfg = Release|Any CPU
- {BBF781D4-C847-44C0-BBC3-79C2F264F63C}.Release|Any CPU.Build.0 = Release|Any CPU
- {BBF781D4-C847-44C0-BBC3-79C2F264F63C}.Release|x64.ActiveCfg = Release|Any CPU
- {BBF781D4-C847-44C0-BBC3-79C2F264F63C}.Release|x64.Build.0 = Release|Any CPU
- {BBF781D4-C847-44C0-BBC3-79C2F264F63C}.Release|x86.ActiveCfg = Release|Any CPU
- {BBF781D4-C847-44C0-BBC3-79C2F264F63C}.Release|x86.Build.0 = Release|Any CPU
- EndGlobalSection
-EndGlobal