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

View File

@@ -1,4 +1,5 @@
using Xunit;
using System.Reflection;
using Xunit;
namespace Octokit.Tests.Integration
{
@@ -10,7 +11,7 @@ namespace Octokit.Tests.Integration
[Fact]
public void NoTestsUseAsyncVoid()
{
var errors = typeof(SelfTests).Assembly.GetAsyncVoidMethodsList();
var errors = typeof(SelfTests).GetTypeInfo().Assembly.GetAsyncVoidMethodsList();
Assert.Equal("", errors);
}
}