Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Src/Newtonsoft.Json.Tests/TestFixtureBase.cs')
-rw-r--r--Src/Newtonsoft.Json.Tests/TestFixtureBase.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/Src/Newtonsoft.Json.Tests/TestFixtureBase.cs b/Src/Newtonsoft.Json.Tests/TestFixtureBase.cs
index 90162e9..c40987a 100644
--- a/Src/Newtonsoft.Json.Tests/TestFixtureBase.cs
+++ b/Src/Newtonsoft.Json.Tests/TestFixtureBase.cs
@@ -27,7 +27,10 @@ using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
-using System.Linq;
+#if NET20
+using Newtonsoft.Json.Serialization;
+using Newtonsoft.Json.Utilities.LinqBridge;
+#endif
using System.Text;
using System.Threading;
#if !NETFX_CORE
@@ -75,12 +78,14 @@ namespace Newtonsoft.Json.Tests
#endif
}
+#if NETFX_CORE
public static class Console
{
public static void WriteLine(params object[] args)
{
}
}
+#endif
public static class CustomAssert
{