Skip to content

Commit 6c385b0

Browse files
committed
Enable concrete type for ISet<T> on WP-SL.
1 parent 26fab32 commit 6c385b0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/MsgPack/Serialization/DefaultConcreteTypeRepository.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ internal DefaultConcreteTypeRepository()
5959
{ typeof( ICollection ).TypeHandle, typeof( List<MessagePackObject> ) },
6060
{ typeof( IList ).TypeHandle, typeof( List<MessagePackObject> ) },
6161
{ typeof( IDictionary ).TypeHandle, typeof( MessagePackObjectDictionary ) },
62-
#if !NETFX_35 && !WINDOWS_PHONE && !UNITY
62+
#if !NETFX_35 && !UNITY
6363
{ typeof( ISet<> ).TypeHandle, typeof( HashSet<> ) },
64-
#endif // !NETFX_35 && !WINDOWS_PHONE && !UNITY
64+
#endif // !NETFX_35 && !UNITY
6565
} );
6666
}
6767

0 commit comments

Comments
 (0)