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); }
- PermissionSet
For full access to the local computer. Associated enumeration: PermissionState.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.