Skip to content

Commit 201841e

Browse files
authored
set pre release to zero for previews (#36666)
1 parent f3c276f commit 201841e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262

6363
<!-- Indicates this is not an officially supported release. Release branches should set this to false. -->
6464
<!-- Keep it in sync with PRERELEASE in eng/native/configureplatform.cmake -->
65-
<IsPrerelease>true</IsPrerelease>
65+
<IsPrerelease>false</IsPrerelease>
6666

6767
<!-- Experimental packages should not be stable -->
6868
<SuppressFinalPackageVersion Condition="'$(SuppressFinalPackageVersion)' == '' and $(MSBuildProjectName.Contains('Experimental'))">true</SuppressFinalPackageVersion>

eng/native/configureplatform.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ include(${CMAKE_CURRENT_LIST_DIR}/functions.cmake)
33

44
# If set, indicates that this is not an officially supported release
55
# Keep in sync with IsPrerelease in Directory.Build.props
6-
set(PRERELEASE 1)
6+
set(PRERELEASE 0)
77

88
#----------------------------------------
99
# Detect and set platform variable names

0 commit comments

Comments
 (0)