File tree Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Expand file tree Collapse file tree 3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ jobs:
21
21
22
22
# Steps represent a sequence of tasks that will be executed as part of the job
23
23
steps :
24
- - name : Install .NET 6 SDK
24
+ - name : Install .NET SDK
25
25
uses : actions/setup-dotnet@v4
26
26
with :
27
- dotnet-version : ' 6 .0.201 '
27
+ dotnet-version : ' 9 .0.x '
28
28
29
29
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
30
30
- name : Checkout Repository
Original file line number Diff line number Diff line change @@ -12,12 +12,15 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- uses : actions/checkout@v4
15
- - name : Setup .NET
15
+
16
+ - name : Install .NET SDK
16
17
uses : actions/setup-dotnet@v4
17
18
with :
18
- dotnet-version : 6.0.x
19
+ dotnet-version : ' 9.0.x'
20
+
19
21
- name : Restore dependencies
20
22
run : dotnet restore
23
+
21
24
- name : Build
22
25
run : dotnet build --no-restore -p:Configuration=Release
23
26
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >net6 .0</TargetFrameworks >
5
- <LangVersion >12 .0</LangVersion >
4
+ <TargetFrameworks >net9 .0</TargetFrameworks >
5
+ <LangVersion >13 .0</LangVersion >
6
6
7
7
<IsPackable >false</IsPackable >
8
8
<DebugType >full</DebugType >
You can’t perform that action at this time.
0 commit comments