From 178553bc38bb64fe4d9da222c742cd291b4f5a08 Mon Sep 17 00:00:00 2001 From: Viktor Hofer Date: Fri, 15 Jul 2022 01:03:26 +0200 Subject: [PATCH] Remove IsPreRelease msbuild property (#72169) * Remove IsPreRelease msbuild property The property was added in https://github.com/dotnet/coreclr/commit/809b8f792923c95b9d5fee824c60dde21079cca1 years ago and isn't used anymore. Remove it to ease branding. * Update configureplatform.cmake --- Directory.Build.props | 3 --- eng/native/configureplatform.cmake | 6 +++--- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index b55b011..f3b2b5a 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -277,9 +277,6 @@ $(CopyrightNetFoundation) $(MSBuildThisFileDirectory)THIRD-PARTY-NOTICES.TXT https://go.microsoft.com/fwlink/?LinkID=799421 - - - false $(MSBuildProjectName.Contains('Private')) true diff --git a/eng/native/configureplatform.cmake b/eng/native/configureplatform.cmake index 86db27c..315aa48 100644 --- a/eng/native/configureplatform.cmake +++ b/eng/native/configureplatform.cmake @@ -1,8 +1,8 @@ include(${CMAKE_CURRENT_LIST_DIR}/functions.cmake) -# If set, indicates that this is not an officially supported release -# Keep in sync with IsPrerelease in Directory.Build.props -set(PRERELEASE 0) +# If set, indicates that this is not an officially supported release. +# Release branches should set this to false. +set(PRERELEASE 1) #---------------------------------------- # Detect and set platform variable names -- 2.7.4