From f0e444b6d45813343bd015a010daa56e71064c84 Mon Sep 17 00:00:00 2001 From: "Christoph Bergmeister [MVP]" Date: Mon, 30 May 2022 21:05:15 +0000 Subject: [PATCH] Bump .NET SDK and SMA patch version --- .devcontainer/Dockerfile | 2 +- Engine/Engine.csproj | 2 +- global.json | 2 +- tools/releaseBuild/Image/DockerFile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index f1a7873ea..06cc1380a 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,6 +1,6 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. -FROM mcr.microsoft.com/dotnet/core/sdk:3.1.408 +FROM mcr.microsoft.com/dotnet/core/sdk:3.1.419 RUN pwsh --command Install-Module platyPS,Pester -Force diff --git a/Engine/Engine.csproj b/Engine/Engine.csproj index f3f60f840..b914173cb 100644 --- a/Engine/Engine.csproj +++ b/Engine/Engine.csproj @@ -64,7 +64,7 @@ - + $(DefineConstants);PSV7;CORECLR diff --git a/global.json b/global.json index a4152ac91..039caccaa 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,5 @@ { "sdk": { - "version": "3.1.408" + "version": "3.1.419" } } diff --git a/tools/releaseBuild/Image/DockerFile b/tools/releaseBuild/Image/DockerFile index b73b770da..682f7248e 100644 --- a/tools/releaseBuild/Image/DockerFile +++ b/tools/releaseBuild/Image/DockerFile @@ -19,7 +19,7 @@ RUN Import-Module PackageManagement; ` Install-ChocolateyPackage -PackageName nuget.commandline -Executable nuget.exe -Cleanup; ` Install-Module -Force -Name platyPS -Repository PSGallery; ` Invoke-WebRequest -Uri https://dot.net/v1/dotnet-install.ps1 -OutFile C:/dotnet-install.ps1; ` - C:/dotnet-install.ps1 -Version 3.1.408; ` + C:/dotnet-install.ps1 -Version 3.1.419; ` Add-Path C:/Users/ContainerAdministrator/AppData/Local/Microsoft/dotnet; COPY buildPSSA.ps1 containerFiles/buildPSSA.ps1