PackageSetItem.MinVersion Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets an optional property representing the package's minimum version. Some verbs use this property (see Remarks in PackageSetItem).
public:
property PackageVersion MinVersion { PackageVersion get(); void set(PackageVersion value); };
PackageVersion MinVersion();
void MinVersion(PackageVersion value);
public PackageVersion MinVersion { get; set; }
var packageVersion = packageSetItem.minVersion;
packageSetItem.minVersion = packageVersion;
Public Property MinVersion As PackageVersion
Property Value
An optional property representing the package's minimum version. If not set, the default value is 0.0.0.0
.