Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 325a44c

Browse files
committed
Merge pull request #336 from ddotlic/master
Fixed SL5 build, but also other builds (please see comment below). Should be painless to integrate this. Also, please let me know next time you want to push a new NuGet build so that I can update SL5 binaries, thanks!
2 parents 5476693 + 291c25f commit 325a44c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ServiceStack.Text.SL5/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@
2121

2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
2323
[assembly: Guid("b058736d-b210-47e1-b16f-ba72d92e7c4e")]
24-
[assembly: AssemblyVersion("3.9.44.0")]
24+
[assembly: AssemblyVersion("3.9.48.0")]

src/ServiceStack.Text/DateTimeExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public static long ToUnixTimeMsAlt(this DateTime dateTime)
4141
return (dateTime.ToStableUniversalTime().Ticks - UnixEpoch) / TimeSpan.TicksPerMillisecond;
4242
}
4343

44-
private static TimeZone LocalTimeZone = TimeZone.CurrentTimeZone;
44+
private static TimeZoneInfo LocalTimeZone = TimeZoneInfo.Local;
4545
public static long ToUnixTimeMs(this DateTime dateTime)
4646
{
4747
var dtUtc = dateTime;

0 commit comments

Comments
 (0)