Because I always forget the syntax for this, here is my personal bookmark for the code to get version information of the current application:
DateTime fileDate = new System.IO.FileInfo(Application.ExecutablePath).LastWriteTime;
string fileVersion = System.Diagnostics.FileVersionInfo.GetVersionInfo(Application.ExecutablePath).FileVersion;