From 662043a1f1bae90659a54e11b473ca5d79730668 Mon Sep 17 00:00:00 2001 From: Jb Evain Date: Tue, 30 Mar 2010 15:18:03 +0000 Subject: [PATCH] 2010-03-30 Jb Evain * TimeZoneInfo.AdjustmentRule.cs * TimeZoneInfo.TransitionTime.cs: Add TypeForwarderFrom attributes. svn path=/trunk/mcs/; revision=154461 --- mcs/class/System.Core/System/ChangeLog | 6 ++++++ mcs/class/System.Core/System/TimeZoneInfo.AdjustmentRule.cs | 3 +++ mcs/class/System.Core/System/TimeZoneInfo.TransitionTime.cs | 3 +++ 3 files changed, 12 insertions(+) diff --git a/mcs/class/System.Core/System/ChangeLog b/mcs/class/System.Core/System/ChangeLog index 5c645381de7..60b5bea4061 100644 --- a/mcs/class/System.Core/System/ChangeLog +++ b/mcs/class/System.Core/System/ChangeLog @@ -1,3 +1,9 @@ +2010-03-30 Jb Evain + + * TimeZoneInfo.AdjustmentRule.cs + * TimeZoneInfo.TransitionTime.cs: + Add TypeForwarderFrom attributes. + 2010-01-04 Jb Evain * TimeZoneInfo.AdjustmentRule.cs, TimeZoneInfo.TransitionTime.cs: diff --git a/mcs/class/System.Core/System/TimeZoneInfo.AdjustmentRule.cs b/mcs/class/System.Core/System/TimeZoneInfo.AdjustmentRule.cs index ad45b1827ea..984613d3333 100644 --- a/mcs/class/System.Core/System/TimeZoneInfo.AdjustmentRule.cs +++ b/mcs/class/System.Core/System/TimeZoneInfo.AdjustmentRule.cs @@ -32,6 +32,9 @@ namespace System { public sealed partial class TimeZoneInfo { [SerializableAttribute] +#if NET_4_0 || BOOTSRAP_NET_4_0 + [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] +#endif public sealed class AdjustmentRule : IEquatable, ISerializable, IDeserializationCallback { DateTime dateEnd; diff --git a/mcs/class/System.Core/System/TimeZoneInfo.TransitionTime.cs b/mcs/class/System.Core/System/TimeZoneInfo.TransitionTime.cs index 491a07b61db..6450131bbf9 100644 --- a/mcs/class/System.Core/System/TimeZoneInfo.TransitionTime.cs +++ b/mcs/class/System.Core/System/TimeZoneInfo.TransitionTime.cs @@ -33,6 +33,9 @@ namespace System public sealed partial class TimeZoneInfo { [SerializableAttribute] +#if NET_4_0 || BOOTSRAP_NET_4_0 + [TypeForwardedFrom (Consts.AssemblySystemCore_3_5)] +#endif public struct TransitionTime : IEquatable, ISerializable, IDeserializationCallback { DateTime timeOfDay; -- 2.11.4.GIT