CreatePackageDependencyOptions.VerifyDependencyResolution Property

Definition

Gets or sets a value that indicates whether to disable dependency resolution when pinning a package dependency. This is useful for installers running as user contexts other than the target user (for example, installers running as LocalSystem).

public:
 property bool VerifyDependencyResolution { bool get(); void set(bool value); };
bool VerifyDependencyResolution();

void VerifyDependencyResolution(bool value);
public bool VerifyDependencyResolution { get; set; }
var boolean = createPackageDependencyOptions.verifyDependencyResolution;
createPackageDependencyOptions.verifyDependencyResolution = boolean;
Public Property VerifyDependencyResolution As Boolean

Property Value

Boolean

bool

Specify true to verify dependency resolution when pinning a package dependency; specify false to disable dependency resolution.

Applies to

See also