I'm doing C# Winform application. I have several class libraries. each library is also project. Usally, I used below code to know the build date of my application. However, I want to know build date for each class library. any help...
DateTime buildDate = new
FileInfo(Assembly.GetExecutingAssembly().Location).LastWriteTime;
MessageBox.Show(string.Format("Build Date : {0}", buildDate), "Version Info");