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:
41
41
shell : bash
42
42
run : |
43
43
if [[ "${{ matrix.dotnet-version }}" == "3.1"* ]]; then
44
+ echo "Building with .NET Core 3.1"
44
45
dotnet build -f netcoreapp3.1 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
45
46
elif [[ "${{ matrix.dotnet-version }}" == "5.0"* ]]; then
47
+ echo "Building with .NET Core 5.0"
46
48
dotnet build -f net5.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
47
49
elif [[ "${{ matrix.dotnet-version }}" == "6.0"* ]]; then
50
+ echo "Building with .NET Core 6.0"
48
51
dotnet build -f net6.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
49
52
elif [[ "${{ matrix.dotnet-version }}" == "7.0"* ]]; then
53
+ echo "Building with .NET Core 7.0"
50
54
dotnet build -f net7.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
51
55
elif [[ "${{ matrix.dotnet-version }}" == "8.0"* ]]; then
56
+ echo "Building with .NET Core 8.0"
52
57
dotnet build -f net8.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
53
58
elif [[ "${{ matrix.dotnet-version }}" == "9.0"* ]]; then
59
+ echo "Building with .NET Core 9.0"
54
60
dotnet build -f net9.0 QueryDB.Core.Tests/QueryDB.Core.Tests.csproj --configuration Release
55
61
fi
56
62
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <!-- < TargetFramework>netcoreapp3.1</TargetFramework>-->
4
+ <!-- TargetFramework>netcoreapp3.1</TargetFramework>-->
5
5
<TargetFrameworks >netcoreapp3.1;net5.0;net6.0;net7.0;net8.0;net9.0</TargetFrameworks >
6
6
7
7
<IsPackable >false</IsPackable >
You can’t perform that action at this time.
0 commit comments