Port to .NET Core (#1503)

Port to .NET Core
This commit is contained in:
Mickaël Derriey
2017-01-21 15:42:02 +11:00
committed by Ryan Gribble
parent 3c818934b8
commit 13d5dab516
155 changed files with 1334 additions and 6014 deletions
@@ -1,7 +1,6 @@
using System;
using System.Linq;
using System.Reflection;
using System.Runtime.Serialization;
namespace Octokit.Tests.Conventions
{
@@ -15,10 +14,6 @@ namespace Octokit.Tests.Conventions
: base(CreateMessage(type, clientInterface), innerException)
{ }
protected InterfaceMethodsMismatchException(SerializationInfo info, StreamingContext context)
: base(info, context)
{ }
static string Format(ParameterInfo parameterInfo)
{
return string.Format("{0} {1}", parameterInfo.ParameterType.Name, parameterInfo.Name);