Skip to content

Commit 48f04bf

Browse files
Merge pull request #12 from abhinavminhas/dev
GitHub Action Update
2 parents e98e595 + e62ebd7 commit 48f04bf

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,22 @@ jobs:
4141
shell: bash
4242
run: |
4343
if [[ "${{ matrix.dotnet-version }}" == "3.1"* ]]; then
44+
echo "Building with .NET Core 3.1"
4445
dotnet build -f netcoreapp3.1 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
4546
elif [[ "${{ matrix.dotnet-version }}" == "5.0"* ]]; then
47+
echo "Building with .NET Core 5.0"
4648
dotnet build -f net5.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
4749
elif [[ "${{ matrix.dotnet-version }}" == "6.0"* ]]; then
50+
echo "Building with .NET Core 6.0"
4851
dotnet build -f net6.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
4952
elif [[ "${{ matrix.dotnet-version }}" == "7.0"* ]]; then
53+
echo "Building with .NET Core 7.0"
5054
dotnet build -f net7.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
5155
elif [[ "${{ matrix.dotnet-version }}" == "8.0"* ]]; then
56+
echo "Building with .NET Core 8.0"
5257
dotnet build -f net8.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
5358
elif [[ "${{ matrix.dotnet-version }}" == "9.0"* ]]; then
59+
echo "Building with .NET Core 9.0"
5460
dotnet build -f net9.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
5561
fi
5662

QueryDB.Core.Tests/QueryDB.Core.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<!--<TargetFramework>netcoreapp3.1</TargetFramework>-->
4+
<!--TargetFramework>netcoreapp3.1</TargetFramework>-->
55
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
66

77
<IsPackable>false</IsPackable>

0 commit comments

Comments
 (0)