Constructor SemVer
- Namespace
- Ubiquity.NET.Versioning
- Assembly
- Ubiquity.NET.Versioning.dll
SemVer(BigInteger, BigInteger, BigInteger)
Initializes a new instance of the SemVer class.
public SemVer(BigInteger major, BigInteger minor, BigInteger patch)
Parameters
major
BigIntegerMajor portion of the core version
minor
BigIntegerMinor portion of the core version
patch
BigIntegerPatch portion of the core version
SemVer(BigInteger, BigInteger, BigInteger, IEnumerable<string>?)
Initializes a new instance of the SemVer class.
public SemVer(BigInteger major, BigInteger minor, BigInteger patch, IEnumerable<string>? preRel)
Parameters
major
BigIntegerMajor portion of the core version
minor
BigIntegerMinor portion of the core version
patch
BigIntegerPatch portion of the core version
preRel
IEnumerable<string>PreRelease components
SemVer(BigInteger, BigInteger, BigInteger, IEnumerable<string>?, IEnumerable<string>?)
Initializes a new instance of the SemVer class.
public SemVer(BigInteger major, BigInteger minor, BigInteger patch, IEnumerable<string>? preRel, IEnumerable<string>? build)
Parameters
major
BigIntegerMajor portion of the core version
minor
BigIntegerMinor portion of the core version
patch
BigIntegerPatch portion of the core version
preRel
IEnumerable<string>PreRelease components
build
IEnumerable<string>Build meta components