File tree Expand file tree Collapse file tree 3 files changed +24
-1
lines changed
Expand file tree Collapse file tree 3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 2626 - uses : actions/checkout@v3
2727 with :
2828 fetch-depth : 0
29+
30+ - name : Setup dotnet
31+ uses : actions/setup-dotnet@v4
32+ with :
33+ dotnet-version : |
34+ 6.0.x
35+ 8.0.x
36+ 9.0.100-rc.2.24474.11
37+
2938 - name : ' Cache: .nuke/temp, ~/.nuget/packages'
3039 uses : actions/cache@v3
3140 with :
Original file line number Diff line number Diff line change 1818using static Nuke . Common . Tools . DotNet . DotNetTasks ;
1919using static Nuke . Common . Tools . Slack . SlackTasks ;
2020
21+ /*
22+ NB Until Nuke supports .net 9.0, the following must be added to the build yml file, immediately
23+ after the checkout step:
24+
25+ - name: Setup dotnet
26+ uses: actions/setup-dotnet@v4
27+ with:
28+ dotnet-version: |
29+ 6.0.x
30+ 8.0.x
31+ 9.0.100-rc.2.24474.11
32+
33+ */
34+
2135[ GitHubActions (
2236 "continuous" ,
2337 GitHubActionsImage . UbuntuLatest ,
Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <OutputType >Exe</OutputType >
5- <TargetFramework >net9 .0</TargetFramework >
5+ <TargetFramework >net8 .0</TargetFramework >
66 <RootNamespace ></RootNamespace >
77 <NoWarn >CS0649;CS0169;CA1050;CA1822;CA2211;IDE1006</NoWarn >
88 <NukeRootDirectory >..</NukeRootDirectory >
You can’t perform that action at this time.
0 commit comments