Skip to content

Commit 5d59444

Browse files
committed
Update .NET SDK to 7.0 Preview 4.
1 parent 88a0fcf commit 5d59444

File tree

4 files changed

+26
-7
lines changed

4 files changed

+26
-7
lines changed

.ci/integration-tests-steps.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ steps:
1616
inputs:
1717
version: '5.0.x'
1818
packageType: runtime
19+
- task: UseDotNet@2
20+
displayName: 'Install .NET Core 6.0'
21+
inputs:
22+
version: 6.0.x
23+
packageType: runtime
1924
- task: UseDotNet@2
2025
displayName: 'Install .NET Core'
2126
inputs:

.ci/mysqlconnector-tests-steps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
steps:
22
- task: UseDotNet@2
3-
displayName: 'Install .NET Core 5.0'
3+
displayName: 'Install .NET Core'
44
inputs:
5-
version: '5.0.x'
5+
version: 6.0.x
66
packageType: runtime
77
- task: UseDotNet@2
88
displayName: 'Install .NET Core'

appveyor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
image: Visual Studio 2019
1+
image: Visual Studio 2022
22
services:
33
- mysql
44
environment:
@@ -9,9 +9,9 @@ cache:
99
- '%USERPROFILE%\.nuget\packages -> **\*.csproj'
1010
install:
1111
- ps: Invoke-WebRequest -Uri "https://dot.net/v1/dotnet-install.ps1" -OutFile "install-dotnet.ps1"
12-
- ps: .\install-dotnet.ps1 -Version 3.1.410 -InstallDir "dotnetcli"
13-
- ps: .\install-dotnet.ps1 -Version 5.0.301 -InstallDir "dotnetcli"
14-
- ps: .\install-dotnet.ps1 -Version 6.0.100 -InstallDir "dotnetcli"
12+
- ps: .\install-dotnet.ps1 -Channel 3.1 -InstallDir "dotnetcli"
13+
- ps: .\install-dotnet.ps1 -Channel 5.0 -InstallDir "dotnetcli"
14+
- ps: .\install-dotnet.ps1 -Channel 7.0 -Quality preview -InstallDir "dotnetcli"
1515
build_script:
1616
- dotnet --info
1717
before_test:

azure-pipelines.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
variables:
2-
DotNetCoreSdkVersion: '6.0.x'
2+
DotNetCoreSdkVersion: '7.0.100-preview.4.22252.9'
33
NUGET_PACKAGES: '$(Pipeline.Workspace)/.nuget/packages'
44

55
jobs:
@@ -44,6 +44,10 @@ jobs:
4444
displayName: 'Install .NET Core 5.0'
4545
inputs:
4646
version: '5.0.x'
47+
- task: UseDotNet@2
48+
displayName: 'Install .NET Core 6.0'
49+
inputs:
50+
version: '6.0.x'
4751
- task: UseDotNet@2
4852
displayName: 'Install .NET Core'
4953
inputs:
@@ -107,6 +111,11 @@ jobs:
107111
pool:
108112
vmimage: 'windows-latest'
109113
steps:
114+
- task: UseDotNet@2
115+
displayName: 'Install .NET Core 6.0'
116+
inputs:
117+
version: 6.0.x
118+
packageType: runtime
110119
- task: UseDotNet@2
111120
displayName: 'Install .NET Core'
112121
inputs:
@@ -183,6 +192,11 @@ jobs:
183192
inputs:
184193
version: 3.1.x
185194
packageType: runtime
195+
- task: UseDotNet@2
196+
displayName: 'Install .NET Core 6.0'
197+
inputs:
198+
version: 6.0.x
199+
packageType: runtime
186200
- task: UseDotNet@2
187201
displayName: 'Install .NET Core'
188202
inputs:

0 commit comments

Comments
 (0)