At the moment I am manually updating the version field (textbox) in my application every time I publish it. I am wondering if there is a way to have my applicat
textbox
Don't forget to check if the application is networkdeployed otherwise it won't work in debug mode.
if (ApplicationDeployment.IsNetworkDeployed) { this.Text = string.Format("Your application name - v{0}", ApplicationDeployment.CurrentDeployment.CurrentVersion.ToString(4)); }