From 68b3ab8f40a2f7a9021c2cacb860ae37f460db63 Mon Sep 17 00:00:00 2001 From: Luiz Henrique Cassettari Date: Thu, 26 Sep 2024 14:29:57 -0300 Subject: [PATCH] Update build to LTS --- Build/build.ps1 | 2 +- Build/build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Build/build.ps1 b/Build/build.ps1 index 9583582..d569439 100644 --- a/Build/build.ps1 +++ b/Build/build.ps1 @@ -18,7 +18,7 @@ $TempDirectory = "$PSScriptRoot\\.nuke\temp" $DotNetGlobalFile = "$PSScriptRoot\\global.json" $DotNetInstallUrl = "https://dot.net/v1/dotnet-install.ps1" -$DotNetChannel = "Current" +$DotNetChannel = "LTS" $env:DOTNET_SKIP_FIRST_TIME_EXPERIENCE = 1 $env:DOTNET_CLI_TELEMETRY_OPTOUT = 1 diff --git a/Build/build.sh b/Build/build.sh index c6d1be3..26f0b25 100644 --- a/Build/build.sh +++ b/Build/build.sh @@ -14,7 +14,7 @@ TEMP_DIRECTORY="$SCRIPT_DIR//.nuke/temp" DOTNET_GLOBAL_FILE="$SCRIPT_DIR//global.json" DOTNET_INSTALL_URL="https://dot.net/v1/dotnet-install.sh" -DOTNET_CHANNEL="Current" +DOTNET_CHANNEL="LTS" export DOTNET_CLI_TELEMETRY_OPTOUT=1 export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1