Merge pull request #52 from quamotion/fixes/net45

Add missing using statement for net45
This commit is contained in:
2018-10-18 22:52:15 +01:00
committed by GitHub

View File

@@ -25,6 +25,9 @@
// SOFTWARE. // SOFTWARE.
using System; using System;
#if NET45
using System.Runtime.Serialization;
#endif
namespace Claunia.PropertyList namespace Claunia.PropertyList
{ {
@@ -64,6 +67,6 @@ namespace Claunia.PropertyList
: base(info, context) : base(info, context)
{ {
} }
#endif #endif
} }
} }