From d90b78004082884dd48bdf97f843cb69cff2dccb Mon Sep 17 00:00:00 2001 From: Frederik Carlier Date: Tue, 16 Oct 2018 18:33:20 +0200 Subject: [PATCH] Add missing using statement for net45 --- plist-cil/PropertyListException.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plist-cil/PropertyListException.cs b/plist-cil/PropertyListException.cs index 61b1a17..7c235f3 100644 --- a/plist-cil/PropertyListException.cs +++ b/plist-cil/PropertyListException.cs @@ -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 } } \ No newline at end of file