File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ jobs:
16
16
- name : Setup .NET Core
17
17
uses : actions/setup-dotnet@v1
18
18
with :
19
- dotnet-version : 6 .0.x
19
+ dotnet-version : 8 .0.x
20
20
- name : Install mscorefonts
21
21
run : sudo apt-get -y install ttf-mscorefonts-installer
22
22
- name : Install dependencies
23
23
run : dotnet restore
24
- - name : Build net6 .0
25
- run : dotnet build --configuration Release --no-restore --framework net6 .0
26
- - name : Test net6 .0
27
- run : dotnet test --no-restore --verbosity minimal --framework net6 .0
24
+ - name : Build net8 .0
25
+ run : dotnet build --configuration Release --no-restore --framework net8 .0
26
+ - name : Test net8 .0
27
+ run : dotnet test --no-restore --verbosity minimal --framework net8 .0
Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ jobs:
14
14
- name : Setup .NET Core
15
15
uses : actions/setup-dotnet@v1
16
16
with :
17
- dotnet-version : 6 .0.x
17
+ dotnet-version : 8 .0.x
18
18
- name : Install dependencies
19
19
run : dotnet restore
20
- - name : Build net6 .0
21
- run : dotnet build --configuration Release --no-restore --framework net6 .0
22
- - name : Test net6 .0
23
- run : dotnet test --no-restore --verbosity minimal --framework net6 .0
20
+ - name : Build net8 .0
21
+ run : dotnet build --configuration Release --no-restore --framework net8 .0
22
+ - name : Test net8 .0
23
+ run : dotnet test --no-restore --verbosity minimal --framework net8 .0
Original file line number Diff line number Diff line change 14
14
- name : Setup .NET Core
15
15
uses : actions/setup-dotnet@v1
16
16
with :
17
- dotnet-version : 6 .0.x
17
+ dotnet-version : 8 .0.x
18
18
- name : Install dependencies
19
19
run : dotnet restore
20
20
- name : Build
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net6 .0</TargetFramework >
4
+ <TargetFramework >net8 .0</TargetFramework >
5
5
6
6
<IsPackable >false</IsPackable >
7
7
You can’t perform that action at this time.
0 commit comments