Skip to content

Commit 6d62928

Browse files
committed
Fix Tuple serialization fail on WP8.
1 parent 100f4b5 commit 6d62928

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MsgPack/Serialization/AbstractSerializers/SerializerBuilder`3.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ protected void BuildSerializer( TContext context )
161161
{
162162
this.BuildEnumSerializer( context );
163163
}
164-
#if !WINDOWS_PHONE && !NETFX_35
164+
#if !NETFX_35
165165
else if ( ( typeof( TObject ).GetAssembly().Equals( typeof( object ).GetAssembly() ) ||
166166
typeof( TObject ).GetAssembly().Equals( typeof( Enumerable ).GetAssembly() ) )
167167
&& typeof( TObject ).GetIsPublic() && typeof( TObject ).Name.StartsWith( "Tuple`", StringComparison.Ordinal ) )

0 commit comments

Comments
 (0)