File tree Expand file tree Collapse file tree 5 files changed +28
-21
lines changed
DapperMappers.Domain.Tests Expand file tree Collapse file tree 5 files changed +28
-21
lines changed Original file line number Diff line number Diff line change @@ -21,18 +21,25 @@ jobs:
21
21
working-directory : ./DapperMappers
22
22
23
23
steps :
24
- - uses : actions/checkout@v3
25
- - name : Setup .NET
26
- uses : actions/setup-dotnet@v3
24
+ - name : Checkout code
25
+ uses : actions/checkout@v4
26
+
27
+ - name : Setup .NET 9.0.x
28
+ uses : actions/setup-dotnet@v4
27
29
with :
28
- dotnet-version : 8.0.x
29
- - name : Restore dependencies
30
- run : dotnet restore
30
+ dotnet-version : 9.0.x
31
+
32
+ - name : List installed .NET SDKs
33
+ run : dotnet --list-sdks
34
+
35
+ - name : Display dotnet version
36
+ run : dotnet --version
37
+
38
+ - name : Build the project
39
+ run : dotnet build --configuration Release
31
40
working-directory : ${{env.working-directory}}
32
- - name : Build
33
- run : dotnet build --no-restore
34
- working-directory : ${{env.working-directory}}
35
- - name : Test
36
- run : dotnet test --no-build --verbosity normal
41
+
42
+ - name : Run test
43
+ run : dotnet test --configuration Release --no-build --verbosity normal
37
44
working-directory : ${{env.working-directory}}
38
45
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Web" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net8 .0</TargetFramework >
4
+ <TargetFramework >net9 .0</TargetFramework >
5
5
<Nullable >enable</Nullable >
6
6
7
7
<!-- If all members are not documented, you can disable the compiler warnings -->
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net8 .0</TargetFramework >
4
+ <TargetFramework >net9 .0</TargetFramework >
5
5
6
6
<IsPackable >false</IsPackable >
7
7
</PropertyGroup >
8
8
9
9
<ItemGroup >
10
- <PackageReference Include =" FluentAssertions" Version =" 8.0 .1" />
11
- <PackageReference Include =" Microsoft.Extensions.Configuration" Version =" 8 .0.0 " />
12
- <PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 8 .0.1 " />
10
+ <PackageReference Include =" FluentAssertions" Version =" 8.1 .1" />
11
+ <PackageReference Include =" Microsoft.Extensions.Configuration" Version =" 9 .0.2 " />
12
+ <PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 9 .0.2 " />
13
13
<PackageReference Include =" nunit" Version =" 4.3.2" />
14
14
<PackageReference Include =" NUnit3TestAdapter" Version =" 5.0.0" >
15
15
<PrivateAssets >all</PrivateAssets >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net8 .0</TargetFramework >
4
+ <TargetFramework >net9 .0</TargetFramework >
5
5
</PropertyGroup >
6
6
7
7
<ItemGroup >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >netstandard2.0</ TargetFramework >
4
+ <TargetFrameworks >net8.0;net9.0</ TargetFrameworks >
5
5
</PropertyGroup >
6
6
7
7
<ItemGroup >
8
- <PackageReference Include =" Microsoft.Extensions.Configuration.Abstractions" Version =" 8 .0.0 " />
8
+ <PackageReference Include =" Microsoft.Extensions.Configuration.Abstractions" Version =" 9 .0.2 " />
9
9
<PackageReference Include =" Microsoft.Data.SqlClient" Version =" 6.0.1" />
10
- <PackageReference Include =" Microsoft.Data.SQLite" Version =" 8 .0.13 " />
11
- <PackageReference Include =" Microsoft.Extensions.Configuration.Binder" Version =" 8 .0.2" />
10
+ <PackageReference Include =" Microsoft.Data.SQLite" Version =" 9 .0.2 " />
11
+ <PackageReference Include =" Microsoft.Extensions.Configuration.Binder" Version =" 9 .0.2" />
12
12
</ItemGroup >
13
13
14
14
</Project >
You can’t perform that action at this time.
0 commit comments