From 4564969075917197bac5d32860413aaf39b114c7 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 29 Nov 2021 18:31:38 +0100 Subject: [PATCH] [dotnet] Preview 11 will come from the release/6.0.1xx-preview11 branch now. --- Make.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Make.config b/Make.config index e97903e57b11..cda7d115ef04 100644 --- a/Make.config +++ b/Make.config @@ -84,7 +84,7 @@ NUGET_HARDCODED_PRERELEASE_IDENTIFIER=preview.11 # Set the NUGET_HARDCODED_PRERELEASE_BRANCH variable to the exact name for the branch the above variable should apply to (so that any other branches won't pick it up by accident). # For the previous example, this would be "release/6.0.1xx-preview5" # When creating a release branch from main, this must be changed from "main" to the new release branch. -NUGET_HARDCODED_PRERELEASE_BRANCH=main +NUGET_HARDCODED_PRERELEASE_BRANCH=release/6.0.1xx-preview11 # compute the alphanumeric version of the hardcoded prerelease branch NUGET_HARDCODED_PRERELEASE_BRANCH_ALPHANUMERIC:=$(shell export LANG=C; printf "%s" "$(NUGET_HARDCODED_PRERELEASE_BRANCH)" | tr -c '[a-zA-Z0-9-]' '-')