Skip to content

Commit 9993386

Browse files
committed
Use .NET 5 Preview 5.
1 parent da90831 commit 9993386

File tree

4 files changed

+19
-5
lines changed

4 files changed

+19
-5
lines changed

.ci/integration-tests-steps.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ steps:
3131
connectionString: 'server=localhost;port=3300;user id=mysqltest;password=test;database=mysqltest;ssl mode=none;DefaultCommandTimeout=3600'
3232
platform: 'netcoreapp2.1'
3333
description: 'No SSL'
34+
- task: UseDotNet@2
35+
displayName: 'Install .NET Core 3.1'
36+
inputs:
37+
version: 3.1.x
38+
packageType: runtime
3439
- task: UseDotNet@2
3540
displayName: 'Install .NET Core'
3641
inputs:

.github/workflows/publish-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up .NET Core
2323
uses: actions/setup-dotnet@v1
2424
with:
25-
dotnet-version: 3.1.301
25+
dotnet-version: 5.0.100-preview.5.20279.10
2626

2727
- name: Restore
2828
run: dotnet restore

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ install:
1111
# The following can be used to install a custom version of .NET Core
1212
- ps: Invoke-WebRequest -Uri "https://raw.githubusercontent.com/dotnet/cli/master/scripts/obtain/dotnet-install.ps1" -OutFile "install-dotnet.ps1"
1313
- ps: .\install-dotnet.ps1 -Version 3.1.301 -InstallDir "dotnetcli"
14+
- ps: .\install-dotnet.ps1 -Version 5.0.100-preview.5.20279.10 -InstallDir "dotnetcli"
1415
build_script:
1516
- dotnet --info
1617
before_test:

azure-pipelines.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
variables:
2-
DotNetCoreSdkVersion: '3.1.301'
2+
DotNetCoreSdkVersion: '5.0.100-preview.5.20279.10'
33
NUGET_PACKAGES: '$(Pipeline.Workspace)/.nuget/packages'
44

55
jobs:
@@ -101,7 +101,13 @@ jobs:
101101
- task: UseDotNet@2
102102
displayName: 'Install .NET Core 2.1'
103103
inputs:
104-
version: '2.1.805'
104+
version: '2.1.x'
105+
packageType: runtime
106+
- task: UseDotNet@2
107+
displayName: 'Install .NET Core 3.1'
108+
inputs:
109+
version: 3.1.x
110+
packageType: runtime
105111
- task: UseDotNet@2
106112
displayName: 'Install .NET Core'
107113
inputs:
@@ -121,7 +127,8 @@ jobs:
121127
- task: UseDotNet@2
122128
displayName: 'Install .NET Core 2.1'
123129
inputs:
124-
version: '2.1.805'
130+
version: '2.1.x'
131+
packageType: runtime
125132
- task: UseDotNet@2
126133
displayName: 'Install .NET Core'
127134
inputs:
@@ -157,7 +164,8 @@ jobs:
157164
- task: UseDotNet@2
158165
displayName: 'Install .NET Core 2.1'
159166
inputs:
160-
version: '2.1.805'
167+
version: '2.1.x'
168+
packageType: runtime
161169
- task: UseDotNet@2
162170
displayName: 'Install .NET Core'
163171
inputs:

0 commit comments

Comments
 (0)