Skip to content

Commit 17df0b8

Browse files
authored
set reset flag to false (#38282)
1 parent 80a7935 commit 17df0b8

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
@@ -74,7 +74,7 @@
7474

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

7979
<!-- Experimental packages should not be stable -->
8080
<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)