From e40c08f44bbf46e68f1216cf6f95df253784bd95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=98=D0=BD=D1=8E=D1=82=D0=B8=D0=BD=20=D0=9C=D0=B0=D0=BA?= =?UTF-8?q?=D1=81=D0=B8=D0=BC=20=D0=9D=D0=B8=D0=BA=D0=BE=D0=BB=D0=B0=D0=B5?= =?UTF-8?q?=D0=B2=D0=B8=D1=87?= Date: Fri, 3 Apr 2020 00:41:00 +0300 Subject: [PATCH] TargetFramework from netcoreapp2.1 to netcoreapp3.1 --- PR-azure-pipeline.yml | 6 +++--- VkNet.Tests/VkNet.Tests.csproj | 2 +- azure-pipelines.yml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/PR-azure-pipeline.yml b/PR-azure-pipeline.yml index f7482987f..f14c358ac 100644 --- a/PR-azure-pipeline.yml +++ b/PR-azure-pipeline.yml @@ -8,9 +8,9 @@ variables: steps: - task: DotNetCoreInstaller@0 - displayName: 'Use .NET Core sdk 3.1.101' + displayName: 'Use .NET Core sdk 3.1.200' inputs: - version: 3.1.101 + version: 3.1.200 - task: DotNetCoreCLI@2 displayName: Test @@ -23,7 +23,7 @@ steps: inputs: botToken: '$(Parameters.botToken)' chats: '$(Parameters.chats)' - message: 'Reason: $(Build.Reason) + message: 'Reason: $(Build.Reason) Build №: $(Build.BuildNumber) Pull Request для VkNet был успешно собран!' buildQueuedBy: true diff --git a/VkNet.Tests/VkNet.Tests.csproj b/VkNet.Tests/VkNet.Tests.csproj index c5129cb2b..93955318a 100644 --- a/VkNet.Tests/VkNet.Tests.csproj +++ b/VkNet.Tests/VkNet.Tests.csproj @@ -1,7 +1,7 @@  false - netcoreapp2.1 + netcoreapp3.1 diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2a5016310..6945d271e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -8,9 +8,9 @@ variables: steps: - task: DotNetCoreInstaller@0 - displayName: 'Use .NET Core sdk 2.1.402' + displayName: 'Use .NET Core sdk 3.1.200' inputs: - version: 2.1.402 + version: 3.1.200 - task: DotNetCoreCLI@2 @@ -18,7 +18,7 @@ steps: inputs: command: test projects: '*[Tt]ests/*.csproj' - arguments: '-c $(BuildConfiguration) -f netcoreapp2.0' + arguments: '-c $(BuildConfiguration) -f netcoreapp3.1' - task: DotNetCoreCLI@2