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:
49
49
shell : bash
50
50
run : |
51
51
if [[ "${{ matrix.dotnet-version }}" == "3.1"* ]]; then
52
+ echo "Building with .NET Core 3.1"
52
53
dotnet build -f netcoreapp3.1 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
53
54
elif [[ "${{ matrix.dotnet-version }}" == "5.0"* ]]; then
55
+ echo "Building with .NET Core 5.0"
54
56
dotnet build -f net5.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
55
57
elif [[ "${{ matrix.dotnet-version }}" == "6.0"* ]]; then
58
+ echo "Building with .NET Core 6.0"
56
59
dotnet build -f net6.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
57
60
elif [[ "${{ matrix.dotnet-version }}" == "7.0"* ]]; then
61
+ echo "Building with .NET Core 7.0"
58
62
dotnet build -f net7.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
59
63
elif [[ "${{ matrix.dotnet-version }}" == "8.0"* ]]; then
64
+ echo "Building with .NET Core 8.0"
60
65
dotnet build -f net8.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
61
66
elif [[ "${{ matrix.dotnet-version }}" == "9.0"* ]]; then
67
+ echo "Building with .NET Core 9.0"
62
68
dotnet build -f net9.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
63
69
fi
64
70
You can’t perform that action at this time.
0 commit comments