I want to render (for internal debugging/info) the last modified date of an assembly, so I know when was a certain website deployed.
Is it possible to get it though reflection?
I get the version like this, I'm looking for something similar:
Assembly.GetExecutingAssembly().GetName().Version.ToString();
ie: I don't want to open the physical file, get its properties, or something like that, as I'll be rendering it in the master page, and don't want that kind of overhead.