From f41c06ba040adf1930156340c5b03d9864d8a1d4 Mon Sep 17 00:00:00 2001 From: Omair Majid Date: Wed, 10 Nov 2021 17:54:45 -0500 Subject: [PATCH] The 6.0 branch is no longer pre-release This has limited affects, but it should have been set to false since 6.0 is now stable/released. The one difference it makes is that -Werror is disabled when building native code. --- Directory.Build.props | 2 +- eng/native/configureplatform.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Directory.Build.props b/Directory.Build.props index f19ea9208c2c..5cb87bb7c257 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -255,7 +255,7 @@ https://go.microsoft.com/fwlink/?LinkID=799421 - true + false $(MSBuildProjectName.Contains('Private')) true diff --git a/eng/native/configureplatform.cmake b/eng/native/configureplatform.cmake index 519431772004..af1c88bce5b6 100644 --- a/eng/native/configureplatform.cmake +++ b/eng/native/configureplatform.cmake @@ -2,7 +2,7 @@ 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 1) +set(PRERELEASE 0) #---------------------------------------- # Detect and set platform variable names