Skip to content

Commit e8f571e

Browse files
committed
Use .NET Core 3.0 SDK.
1 parent 5060d9d commit e8f571e

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ before_install:
3535
- tar zxf dotnet-runtime-2.1.12-linux-x64.tar.gz -C $HOME/dotnet
3636
- wget -q https://download.microsoft.com/download/3/a/3/3a3bda26-560d-4d8e-922e-6f6bc4553a84/dotnet-runtime-2.0.9-linux-x64.tar.gz
3737
- tar zxf dotnet-runtime-2.0.9-linux-x64.tar.gz -C $HOME/dotnet
38-
- wget -q https://download.visualstudio.microsoft.com/download/pr/b81a2bd3-a8a4-4c7e-bd69-030f412ff7b4/3fc5f2c0481313daf2e18c348362ff3f/dotnet-sdk-3.0.100-rc1-014190-linux-x64.tar.gz
39-
- tar zxf dotnet-sdk-3.0.100-rc1-014190-linux-x64.tar.gz -C $HOME/dotnet
38+
- wget -q https://download.visualstudio.microsoft.com/download/pr/886b4a4c-30af-454b-8bec-81c72b7b4e1f/d1a0c8de9abb36d8535363ede4a15de6/dotnet-sdk-3.0.100-linux-x64.tar.gz
39+
- tar zxf dotnet-sdk-3.0.100-linux-x64.tar.gz -C $HOME/dotnet
4040
- export DOTNET_ROOT=$HOME/dotnet
4141
- export PATH=$HOME/dotnet:$PATH
4242
- dotnet --info

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cache:
1010
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"
13-
- ps: .\install-dotnet.ps1 -Version 3.0.100-rc1-014190 -InstallDir "dotnetcli"
13+
- ps: .\install-dotnet.ps1 -Version 3.0.100 -InstallDir "dotnetcli"
1414
build_script:
1515
- dotnet --info
1616
before_test:

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
variables:
2-
DotNetCoreSdkVersion: '3.0.100-rc1-014190'
2+
DotNetCoreSdkVersion: '3.0.100'
33
NUGET_PACKAGES: '$(Pipeline.Workspace)/.nuget/packages'
44

55
jobs:

src/MySqlConnector/MySqlConnector.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks Condition=" '$(NETCoreSdkVersion)' != '3.0.100-rc1-014190' ">net45;net461;net471;netstandard1.3;netstandard2.0;netcoreapp2.1</TargetFrameworks>
5-
<TargetFrameworks Condition=" '$(NETCoreSdkVersion)' == '3.0.100-rc1-014190' ">net45;net461;net471;netstandard1.3;netstandard2.0;netstandard2.1;netcoreapp2.1;netcoreapp3.0</TargetFrameworks>
4+
<TargetFrameworks>net45;net461;net471;netstandard1.3;netstandard2.0;netstandard2.1;netcoreapp2.1;netcoreapp3.0</TargetFrameworks>
65
<Title>Async MySQL ADO.NET Connector</Title>
76
<Description>A truly async MySQL ADO.NET provider, supporting MySQL Server, MariaDB, Percona Server, Amazon Aurora, Azure Database for MySQL and more.</Description>
87
<Copyright>Copyright 2016–2019 Bradley Grainger</Copyright>

tests/SideBySide/SideBySide.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup Condition=" '$(Configuration)' != 'Baseline' ">
4-
<TargetFrameworks Condition=" '$(NETCoreSdkVersion)' != '3.0.100-rc1-014190' ">net452;net461;net472;netcoreapp1.1.2;netcoreapp2.0;netcoreapp2.1</TargetFrameworks>
5-
<TargetFrameworks Condition=" '$(NETCoreSdkVersion)' == '3.0.100-rc1-014190' ">net452;net461;net472;netcoreapp1.1.2;netcoreapp2.0;netcoreapp2.1;netcoreapp3.0</TargetFrameworks>
4+
<TargetFrameworks>net452;net461;net472;netcoreapp1.1.2;netcoreapp2.0;netcoreapp2.1;netcoreapp3.0</TargetFrameworks>
65
</PropertyGroup>
76

87
<PropertyGroup Condition=" '$(Configuration)' == 'Baseline' ">

0 commit comments

Comments
 (0)