Indicates the deployment mode used by the deployment process to deploys application items.

Namespace: Novalys.VisualGuard.Security.Deployment.Actions
Assembly: Novalys.VisualGuard.Security (in Novalys.VisualGuard.Security.dll) Version: 2017.0.101.17 (2017.0.101.17)

Syntax

C#
public VGApplicationDeploymentMode DeploymentMode { get; }
Visual Basic
Public ReadOnly Property DeploymentMode As VGApplicationDeploymentMode
	Get

Property Value

Type: VGApplicationDeploymentMode

Remarks

The default value is equal to Replace.

When the DeploymentMode is equal to Refresh, the deployment process will apply the following rules:
  • When an item exists in the deployed repository and the target repository, the deployment process will replace the target item by the deployed item.
  • When an item exists in the deployed repository but does not exist in the target repository, the deployment process will add the item of the deployed repository to the target repository.
  • When an item does not exist in the deployed repository but exists in the deployed repository, the deployment process will keep the item of the target repository.
when the DeploymentMode is equal to Replace, the deployment process will apply the following rules:
  • When an item exists in the deployed repository and the target repository, the deployment process will replace the target item by the deployed item.
  • When an item exists in the deployed repository but does not exist in the target repository, the deployment process will add the item of the deployed repository to the target repository.
  • When an item does not exist in the deployed repository but exists in the deployed repository, the deployment process will remove the item from the target repository.

See Also