File tree 6 files changed +23
-5
lines changed
6 files changed +23
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<OutputType >Exe</OutputType >
5
- <TargetFramework >net7 .0</TargetFramework >
5
+ <TargetFramework >net8 .0</TargetFramework >
6
6
<ImplicitUsings >enable</ImplicitUsings >
7
7
<Nullable >enable</Nullable >
8
8
<WarningsAsErrors >Nullable</WarningsAsErrors >
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ pushd "$SCRIPT_DIR"
52
52
source " $SCRIPT_DIR /Misc/helpers.sh"
53
53
54
54
DOTNETSDK_ROOT=" $SCRIPT_DIR /_dotnetsdk"
55
- DOTNETSDK_VERSION=" 7 .0.201 "
55
+ DOTNETSDK_VERSION=" 8 .0.100 "
56
56
DOTNETSDK_INSTALLDIR=" $DOTNETSDK_ROOT /$DOTNETSDK_VERSION "
57
57
58
58
detect_platform_and_runtime_id
Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ steps:
21
21
inputs :
22
22
versionSpec : 10.24.1
23
23
24
- # Use .NET SDK 7
24
+ # Use .NET SDK 8
25
25
- task : UseDotNet@2
26
- displayName : ' Install .NET Core SDK 7 .x'
26
+ displayName : ' Install .NET Core SDK 8 .x'
27
27
inputs :
28
- version : 7 .x
28
+ version : 8 .x
29
29
30
30
# npm install
31
31
- script : npm install
Original file line number Diff line number Diff line change 9
9
- checkout : self
10
10
clean : true
11
11
12
+ # Use .NET SDK 8
13
+ - task : UseDotNet@2
14
+ displayName : ' Install .NET Core SDK 8.x'
15
+ inputs :
16
+ version : 8.x
17
+
12
18
# Use node 10, npm 6
13
19
- task : NodeTool@0
14
20
displayName : Use node 10
Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ steps:
14
14
- powershell : ./ci/start-collect-diagnostics.ps1
15
15
displayName : Start collect diagnostics
16
16
17
+ # Use .NET SDK 8
18
+ - task : UseDotNet@2
19
+ displayName : ' Install .NET Core SDK 8.x'
20
+ inputs :
21
+ version : 8.x
22
+
17
23
# Use node 10, npm 6
18
24
- task : NodeTool@0
19
25
displayName : Use node 10
Original file line number Diff line number Diff line change @@ -11,6 +11,12 @@ steps:
11
11
- script : node ci/patch-task-version.js --task=${{ parameters.task }} --version=${{ parameters.version }}
12
12
displayName : ${{ parameters.task }} patch task version
13
13
14
+ # Use .NET SDK 8
15
+ - task : UseDotNet@2
16
+ displayName : ' Install .NET Core SDK 8.x'
17
+ inputs :
18
+ version : 8.x
19
+
14
20
# Clean
15
21
- script : node make.js clean
16
22
displayName : Clean tasks
You can’t perform that action at this time.
0 commit comments