Skip to content

Commit

Permalink
Remove IsPreRelease msbuild property (#72169)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
ViktorHofer authored Jul 14, 2022
1 parent 46119f1 commit 178553b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -277,9 +277,6 @@
<Copyright>$(CopyrightNetFoundation)</Copyright>
<PackageThirdPartyNoticesFile>$(MSBuildThisFileDirectory)THIRD-PARTY-NOTICES.TXT</PackageThirdPartyNoticesFile>
<PackageReleaseNotes>https://go.microsoft.com/fwlink/?LinkID=799421</PackageReleaseNotes>
<!-- Indicates this is not an officially supported release. Release branches should set this to false. -->
<!-- Keep it in sync with PRERELEASE in eng/native/configureplatform.cmake -->
<IsPrerelease>false</IsPrerelease>
<IsPrivateAssembly>$(MSBuildProjectName.Contains('Private'))</IsPrivateAssembly>
<!-- Private packages should not be stable -->
<SuppressFinalPackageVersion Condition="'$(SuppressFinalPackageVersion)' == '' and $(IsPrivateAssembly)">true</SuppressFinalPackageVersion>
Expand Down
6 changes: 3 additions & 3 deletions eng/native/configureplatform.cmake
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 178553b

Please sign in to comment.