From ac39034875110ec83e6d52f818663398e2025ea6 Mon Sep 17 00:00:00 2001 From: Paolo Date: Sat, 7 Dec 2019 23:28:33 +0000 Subject: [PATCH] add support for dotnet core 3.1 (#25) --- SayIt.Tests/SayIt.Tests.fsproj | 2 +- SayIt/SayIt.fsproj | 3 ++- azure-pipelines.yml | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/SayIt.Tests/SayIt.Tests.fsproj b/SayIt.Tests/SayIt.Tests.fsproj index dfb513f..e125afe 100644 --- a/SayIt.Tests/SayIt.Tests.fsproj +++ b/SayIt.Tests/SayIt.Tests.fsproj @@ -1,7 +1,7 @@ - netcoreapp3.0 + netcoreapp3.1 false false diff --git a/SayIt/SayIt.fsproj b/SayIt/SayIt.fsproj index b440625..1d95a63 100644 --- a/SayIt/SayIt.fsproj +++ b/SayIt/SayIt.fsproj @@ -2,7 +2,8 @@ Exe - netcoreapp3.0 + netcoreapp3.1 + 0.3.0 diff --git a/azure-pipelines.yml b/azure-pipelines.yml index d3c3194..78d0ce0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -27,13 +27,13 @@ pool: variables: buildConfiguration: 'Release' - framework: netcoreapp3.0 + framework: netcoreapp3.1 steps: - task: UseDotNet@2 displayName: Install .NET Core SDK inputs: - version: 3.0.100 + version: 3.1.100 - task: DotNetCoreCLI@2 displayName: Build