File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -49,16 +49,22 @@ jobs:
4949 shell : bash
5050 run : |
5151 if [[ "${{ matrix.dotnet-version }}" == "3.1"* ]]; then
52+ echo "Building with .NET Core 3.1"
5253 dotnet build -f netcoreapp3.1 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
5354 elif [[ "${{ matrix.dotnet-version }}" == "5.0"* ]]; then
55+ echo "Building with .NET Core 5.0"
5456 dotnet build -f net5.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
5557 elif [[ "${{ matrix.dotnet-version }}" == "6.0"* ]]; then
58+ echo "Building with .NET Core 6.0"
5659 dotnet build -f net6.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
5760 elif [[ "${{ matrix.dotnet-version }}" == "7.0"* ]]; then
61+ echo "Building with .NET Core 7.0"
5862 dotnet build -f net7.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
5963 elif [[ "${{ matrix.dotnet-version }}" == "8.0"* ]]; then
64+ echo "Building with .NET Core 8.0"
6065 dotnet build -f net8.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
6166 elif [[ "${{ matrix.dotnet-version }}" == "9.0"* ]]; then
67+ echo "Building with .NET Core 9.0"
6268 dotnet build -f net9.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
6369 fi
6470
You can’t perform that action at this time.
0 commit comments