AssemblyFileVersioningScheme Enum

Summary

Determines which version components are included in the assembly file version (AssemblyFileVersionAttribute).
Namespace
GitVersion.Configuration
Interfaces
  • IComparable
  • ISpanFormattable
  • IFormattable
  • IConvertible
Base Types
  • object
  • ValueType
  • Enum
graph BT Type-->Base0["Enum"] Base0-->Base1["ValueType"] Base1-->Base2["object"] Type-.->Interface0["IComparable"] Type-.->Interface1["ISpanFormattable"] Type-.->Interface2["IFormattable"] Type-.->Interface3["IConvertible"] Type["AssemblyFileVersioningScheme"] class Type type-node

Syntax

public enum AssemblyFileVersioningScheme

Fields

Name Constant Value Summary
Major 3
Uses Major.0.0.0 as the assembly file version.
static
MajorMinor 2
Uses Major.Minor.0.0 as the assembly file version.
static
MajorMinorPatch 1
Uses Major.Minor.Patch.0 as the assembly file version.
static
MajorMinorPatchTag 0
Uses Major.Minor.Patch.PreReleaseNumber as the assembly file version.
static
None 4
Does not set the assembly file version.
static
GitHub