File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments