diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 572e36e..611f591 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,16 +41,22 @@ jobs: shell: bash run: | if [[ "${{ matrix.dotnet-version }}" == "3.1"* ]]; then + echo "Building with .NET Core 3.1" dotnet build -f netcoreapp3.1 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release elif [[ "${{ matrix.dotnet-version }}" == "5.0"* ]]; then + echo "Building with .NET Core 5.0" dotnet build -f net5.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release elif [[ "${{ matrix.dotnet-version }}" == "6.0"* ]]; then + echo "Building with .NET Core 6.0" dotnet build -f net6.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release elif [[ "${{ matrix.dotnet-version }}" == "7.0"* ]]; then + echo "Building with .NET Core 7.0" dotnet build -f net7.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release elif [[ "${{ matrix.dotnet-version }}" == "8.0"* ]]; then + echo "Building with .NET Core 8.0" dotnet build -f net8.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release elif [[ "${{ matrix.dotnet-version }}" == "9.0"* ]]; then + echo "Building with .NET Core 9.0" dotnet build -f net9.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release fi diff --git a/QueryDB.Core.Tests/QueryDB.Core.Tests.csproj b/QueryDB.Core.Tests/QueryDB.Core.Tests.csproj index c508b11..65543fb 100644 --- a/QueryDB.Core.Tests/QueryDB.Core.Tests.csproj +++ b/QueryDB.Core.Tests/QueryDB.Core.Tests.csproj @@ -1,7 +1,7 @@  - + netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0 false