Re: [NAnt-users] Date/Time Functions

2010-03-28 Thread Charles Chan
Hello Ann, According to the NAnt document, for most of the DateTime functions, the output is typically "formatted with the DateTimeFormatInfo for the invariant culture." I think the proper fix is to allow an IFormatProvider (ie DatetimeFormatInfo) to be passed as an (optional) argument to the N

[NAnt-users] Date/Time Functions

2010-03-28 Thread Ann Chaplinskaya
Hello all, In my Nant script I use datetime::get-month, datetime::get-hour functions and others DateTime functions, but the dates are represented in /m/d/ and h/m/s format (eg 2010_3_2, 3-2-6), but I need /mm/dd , hh/mm/ss , like this 2010_03_02 03-02-06. Can anybody help? Wha