File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/MsgPack/Serialization Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 24
24
25
25
using System ;
26
26
#if ! UNITY || MSGPACK_UNITY_FULL
27
+ using System . ComponentModel ;
27
28
#endif // !UNITY || MSGPACK_UNITY_FULL
28
29
#if FEATURE_CONCURRENT
29
30
using System . Collections . Concurrent ;
@@ -223,8 +224,8 @@ public DictionarySerializationOptions DictionarySerializationOptions
223
224
/// The <see cref="DictionarySerializationOptions"/> which stores dictionary(map) based serialization options. This value will not be <c>null</c>.
224
225
/// </value>
225
226
[ Obsolete ( "Use DictionarySerializationOption instead." ) ]
226
- #if ! UNITY && ! ( XAMARIN && ( __ANDROID__ || __IOS__ ) )
227
- [ System . ComponentModel . EditorBrowsable ( System . ComponentModel . EditorBrowsableState . Never ) ]
227
+ #if ! UNITY || MSGPACK_UNITY_FULL
228
+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
228
229
#endif
229
230
public DictionarySerializationOptions DictionarySerlaizationOptions
230
231
{
You can’t perform that action at this time.
0 commit comments