Skip to content

Commit 178553b

Browse files
authored
Remove IsPreRelease msbuild property (#72169)
* Remove IsPreRelease msbuild property The property was added in dotnet/coreclr@809b8f7 years ago and isn't used anymore. Remove it to ease branding. * Update configureplatform.cmake
1 parent 46119f1 commit 178553b

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

Directory.Build.props

-3
Original file line numberDiff line numberDiff line change
@@ -277,9 +277,6 @@
277277
<Copyright>$(CopyrightNetFoundation)</Copyright>
278278
<PackageThirdPartyNoticesFile>$(MSBuildThisFileDirectory)THIRD-PARTY-NOTICES.TXT</PackageThirdPartyNoticesFile>
279279
<PackageReleaseNotes>https://go.microsoft.com/fwlink/?LinkID=799421</PackageReleaseNotes>
280-
<!-- Indicates this is not an officially supported release. Release branches should set this to false. -->
281-
<!-- Keep it in sync with PRERELEASE in eng/native/configureplatform.cmake -->
282-
<IsPrerelease>false</IsPrerelease>
283280
<IsPrivateAssembly>$(MSBuildProjectName.Contains('Private'))</IsPrivateAssembly>
284281
<!-- Private packages should not be stable -->
285282
<SuppressFinalPackageVersion Condition="'$(SuppressFinalPackageVersion)' == '' and $(IsPrivateAssembly)">true</SuppressFinalPackageVersion>

eng/native/configureplatform.cmake

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
include(${CMAKE_CURRENT_LIST_DIR}/functions.cmake)
22

3-
# If set, indicates that this is not an officially supported release
4-
# Keep in sync with IsPrerelease in Directory.Build.props
5-
set(PRERELEASE 0)
3+
# If set, indicates that this is not an officially supported release.
4+
# Release branches should set this to false.
5+
set(PRERELEASE 1)
66

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

0 commit comments

Comments
 (0)