Click or drag to resize
IVersionSpec Interface
Represents a version specification, that is, a collection of one or more versions.

Namespace: semver.tools
Assembly: semver.tools (in semver.tools.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public interface IVersionSpec

The IVersionSpec type exposes the following members.

Properties
  NameDescription
Public propertyIsMaxInclusive
True if maxVersion is included in the version spec. False if only versions lower (but not equal) to maxVersion are in the version spec.
Public propertyIsMinInclusive
True if minVersion is included in the version spec. False if only versions higher (but not equal) to minVersion are in the version spec.
Public propertyMaxVersion
Upper bound of the version spec.
Public propertyMinVersion
Lower bound of the version spec.
Top
See Also