mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-15 20:54:58 +00:00
fix: Program and Processor utils actually return DateTimes for date properties
This commit is contained in:
committed by
Chris Cameron
parent
69eb4b3d34
commit
49d12d454f
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user