Skip to content

Commit ad3a9a4

Browse files
committed
Update target framework
1 parent 126f40e commit ad3a9a4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)