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:
2121
2222 # Steps represent a sequence of tasks that will be executed as part of the job
2323 steps :
24- - name : Install .NET 6 SDK
24+ - name : Install .NET SDK
2525 uses : actions/setup-dotnet@v4
2626 with :
27- dotnet-version : ' 6 .0.201 '
27+ dotnet-version : ' 9 .0.x '
2828
2929 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
3030 - name : Checkout Repository
Original file line number Diff line number Diff line change @@ -12,12 +12,15 @@ jobs:
1212 runs-on : ubuntu-latest
1313 steps :
1414 - uses : actions/checkout@v4
15- - name : Setup .NET
15+
16+ - name : Install .NET SDK
1617 uses : actions/setup-dotnet@v4
1718 with :
18- dotnet-version : 6.0.x
19+ dotnet-version : ' 9.0.x'
20+
1921 - name : Restore dependencies
2022 run : dotnet restore
23+
2124 - name : Build
2225 run : dotnet build --no-restore -p:Configuration=Release
2326
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFrameworks >net6 .0</TargetFrameworks >
5- <LangVersion >12 .0</LangVersion >
4+ <TargetFrameworks >net9 .0</TargetFrameworks >
5+ <LangVersion >13 .0</LangVersion >
66
77 <IsPackable >false</IsPackable >
88 <DebugType >full</DebugType >
You can’t perform that action at this time.
0 commit comments