ApplicationDeployment::CurrentVersion Property
Gets the version of the deployment for the current running instance of the application.
Assembly: System.Deployment (in System.Deployment.dll)
CurrentVersion will differ from UpdatedVersion if a new update has been installed but you have not yet called Restart. If the deployment manifest is configured to perform automatic updates, you can compare these two values to determine if you should restart the application.
The following code example defines a method that determines whether ClickOnce has updated the application.
public: bool CheckForUpdateDue() { bool isUpdateDue = false; if (ApplicationDeployment::IsNetworkDeployed) { ApplicationDeployment^ dueAppDeployment = ApplicationDeployment::CurrentDeployment; TimeSpan^ updateInterval = DateTime::Now - dueAppDeployment->TimeOfLastUpdateCheck; if (updateInterval->Days >= 3) { isUpdateDue = true; } } return (isUpdateDue); }
For full access to the local computer. Associated enumeration: PermissionState.
Available since 2.0