Add missing using statement for net45

This commit is contained in:
Frederik Carlier
2018-10-16 18:33:20 +02:00
parent c109d2c76b
commit d90b780040

View File

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