Enum StateManager.AssemblyVersionRequest
Use this enumeration as input to the overloaded StateManager class's GetAssemblyProductAndVersion method, to specify how many parts of the version string to return.
Namespace: WizardWrx.DLLConfigurationManager
Assembly: WizardWrx.DLLConfigurationManager.dll
Syntax
public enum AssemblyVersionRequest : int
Fields
Name | Description |
---|---|
Complete | This is functionally equivalent to specifying a constant value of ASSEMBLYVERSION_COMPLETE to the ToString method of a System.Version object, and is intended to do so through the GetAssemblyProductAndVersion instance method of this class. MajorMinroBuildRevision and Complete are synonyms. |
MajorAndMinor | This is functionally equivalent to specifying a constant value of ASSEMBLYVERSION_MAJOR_AND_MINOR to the ToString method of a System.Version object, and is intended to do so through the GetAssemblyProductAndVersion instance method of this class. |
MajorMinorExceptRevision | This is functionally equivalent to specifying a constant value of ASSEMBLYVERSION_EXCEPT_REVISION to the ToString method of a System.Version object, and is intended to do so through the GetAssemblyProductAndVersion instance method of this class. MajroMinorBuild and MajorMinorExceptRevision are synonyms. |
MajorMinroBuildRevision | This is functionally equivalent to specifying a constant value of ASSEMBLYVERSION_COMPLETE to the ToString method of a System.Version object, and is intended to do so through the GetAssemblyProductAndVersion instance method of this class. MajorMinroBuildRevision and Complete are synonyms. |
MajorOnly | This is functionally equivalent to specifying a constant value of ASSEMBLYVERSION_MAJOR_ONLY to the ToString method of a System.Version object, and is intended to do so through the GetAssemblyProductAndVersion instance method of this class. |
MajroMinorBuild | This is functionally equivalent to specifying a constant value of ASSEMBLYVERSION_EXCEPT_REVISION to the ToString method of a System.Version object, and is intended to do so through the GetAssemblyProductAndVersion instance method of this class. MajroMinorBuild and MajorMinorExceptRevision are synonyms. |