Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

build date & time 1

Status
Not open for further replies.

Gamera99

Programmer
May 17, 2001
59
JP
Does anyone know the object & properties to expose the last solution build date and time? I wanted to post the data on one of my administration pages since my project has multiple developers. I have looked in the help files but I can't find the appropriate object. Thanks if anyone has any suggestions.
 
Try looking at the Assembly object - it has properties for the version info (which should be updated every time a build is done)

Chip H.
 
Version MyVersion = this.GetType().Assembly.GetName().Version;

Chip H.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top