The enumeration of release mode.

Namespace: DotNetNuke.Application
Assembly: DotNetNuke (in DotNetNuke.dll)

Syntax

C#
public enum ReleaseMode
Visual Basic
Public Enumeration ReleaseMode

Field Value

  • None: Not specified for the current release.
  • Alpha:Alpha release is an opportunity for customers to get an early look at a particular software feature.
  • Beta: Beta release is a mostly completed release, At this point we will have implemented most of the major features planned for a specific release.
  • RC: RC relase will be the Stable release if there is none major show-stopping bugs, We have gone through all the major test scenarios and are just running through a final set of regression tests and verifying the packaging.
  • Stable: Stable release is believed to be ready for use, remember that only stable release can be used in production environment.

Members

Member nameValueDescription
None0 Not asssigned
Alpha1 Alpha release
Beta2 Beta release
RC3 Release candidate
Stable4 Stable release version

See Also