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.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
namespace Octokit.Tests.Conventions
{
@@ -15,10 +14,6 @@ namespace Octokit.Tests.Conventions
: base(CreateMessage(type, methodsMissingOnReactiveClient), innerException)
{ }
protected InterfaceHasAdditionalMethodsException(SerializationInfo info, StreamingContext context)
: base(info, context)
{ }
static string CreateMessage(Type type, IEnumerable<string> methods)
{
var methodsFormatted = string.Join("\r\n", methods.Select(m => string.Format(" - {0}", m)));