From a34c50889f47d1b297cf813da96954092ac3fbbb Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Thu, 11 Aug 2022 15:06:40 +0200 Subject: [PATCH 1/2] Use the new .NET --- scripts/azure-pipelines-variables.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/azure-pipelines-variables.yml b/scripts/azure-pipelines-variables.yml index 42c6f049a7b..d4680bf4aa3 100644 --- a/scripts/azure-pipelines-variables.yml +++ b/scripts/azure-pipelines-variables.yml @@ -15,8 +15,8 @@ variables: MONO_VERSION_LINUX: '' XCODE_VERSION: 13.2.1 VISUAL_STUDIO_VERSION: '17/pre' - DOTNET_VERSION_PREVIEW: '6.0.302' - DOTNET_WORKLOAD_SOURCE: 'https://aka.ms/dotnet/maui/6.0.300.json' + DOTNET_VERSION_PREVIEW: '6.0.400' + DOTNET_WORKLOAD_SOURCE: 'https://aka.ms/dotnet/maui/6.0.486.json' CONFIGURATION: 'Release' DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true THROW_ON_TEST_FAILURE: true From 2f4add9e79f99084bd1948a55c436578731311a3 Mon Sep 17 00:00:00 2001 From: Matthew Leibowitz Date: Thu, 11 Aug 2022 16:25:01 +0200 Subject: [PATCH 2/2] Use the "stable" feed --- scripts/install-dotnet.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-dotnet.ps1 b/scripts/install-dotnet.ps1 index 50ffbfe9040..d970f348400 100644 --- a/scripts/install-dotnet.ps1 +++ b/scripts/install-dotnet.ps1 @@ -1,7 +1,7 @@ Param( [string] $Version, [string] $InstallDir, - [string] $FeedUrl = "https://dotnetbuilds.blob.core.windows.net/public" + [string] $FeedUrl = "https://dotnetcli.blob.core.windows.net/public" ) $ErrorActionPreference = 'Stop'