From e3b9235f6858d007d5d5061c54e18804a42483b7 Mon Sep 17 00:00:00 2001 From: Bill Wagner Date: Wed, 20 May 2020 14:14:43 -0400 Subject: [PATCH 1/5] make program class public --- Beginners/myapp/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Beginners/myapp/Program.cs b/Beginners/myapp/Program.cs index 1c71a64..dddd833 100644 --- a/Beginners/myapp/Program.cs +++ b/Beginners/myapp/Program.cs @@ -3,7 +3,7 @@ using System.Linq; namespace myapp { - class Program + public class Program { static void Main(string region = null, string session = null, From 6bccb50effa79a5a6a848e91c72eaf13846049ef Mon Sep 17 00:00:00 2001 From: Bill Wagner Date: Wed, 20 May 2020 14:27:26 -0400 Subject: [PATCH 2/5] update SDKs --- Beginners/myapp/Program.cs | 2 +- Beginners/myapp/myapp.csproj | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Beginners/myapp/Program.cs b/Beginners/myapp/Program.cs index dddd833..1c71a64 100644 --- a/Beginners/myapp/Program.cs +++ b/Beginners/myapp/Program.cs @@ -3,7 +3,7 @@ using System.Linq; namespace myapp { - public class Program + class Program { static void Main(string region = null, string session = null, diff --git a/Beginners/myapp/myapp.csproj b/Beginners/myapp/myapp.csproj index 8f5d984..59cd545 100644 --- a/Beginners/myapp/myapp.csproj +++ b/Beginners/myapp/myapp.csproj @@ -2,12 +2,12 @@ Exe - netcoreapp3.0 + netcoreapp3.1 - - + + From 45c97a92e9e3cb8612a7849ca43b83c6739623c3 Mon Sep 17 00:00:00 2001 From: Bill Wagner Date: Wed, 20 May 2020 14:55:29 -0400 Subject: [PATCH 3/5] remove experimental command line --- Beginners/myapp/myapp.csproj | 1 - 1 file changed, 1 deletion(-) diff --git a/Beginners/myapp/myapp.csproj b/Beginners/myapp/myapp.csproj index 59cd545..eb58062 100644 --- a/Beginners/myapp/myapp.csproj +++ b/Beginners/myapp/myapp.csproj @@ -7,7 +7,6 @@ - From d2e285464408d88b9ae64f35c4ce765be08f202e Mon Sep 17 00:00:00 2001 From: Bill Wagner Date: Wed, 20 May 2020 15:59:27 -0400 Subject: [PATCH 4/5] test: pin to 3.1.2 SDK --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 380dcb9..9d3f2c6 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -16,7 +16,7 @@ jobs: displayName: 'Use .NET Core sdk' inputs: packageType: sdk - version: 3.1.x + version: 3.1.2 installationPath: $(Agent.ToolsDirectory)/dotnet - task: UseDotNet@2 displayName: 'Use .NET Core sdk' From a8806b21afb070de56b4c12851dc1add56a3420a Mon Sep 17 00:00:00 2001 From: Bill Wagner Date: Wed, 20 May 2020 16:08:55 -0400 Subject: [PATCH 5/5] need the full version number --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9d3f2c6..b921f5a 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -16,7 +16,7 @@ jobs: displayName: 'Use .NET Core sdk' inputs: packageType: sdk - version: 3.1.2 + version: 3.1.200 installationPath: $(Agent.ToolsDirectory)/dotnet - task: UseDotNet@2 displayName: 'Use .NET Core sdk'