fix: Program and Processor utils actually return DateTimes for date properties

This commit is contained in:
Drew Tingen
2020-04-27 11:09:58 -04:00
committed by Chris Cameron
parent 69eb4b3d34
commit 49d12d454f
4 changed files with 31 additions and 10 deletions

View File

@@ -18,11 +18,11 @@ namespace ICD.Common.Utils
/// Gets the compile date of the program.
/// </summary>
[PublicAPI]
public static string CompiledDate
public static DateTime CompiledDate
{
get
{
return IcdFile.GetLastWriteTime(Assembly.GetEntryAssembly().Location).ToString();
return IcdFile.GetLastWriteTime(Assembly.GetEntryAssembly().Location);
}
}