diff --git a/MonoDevelop.XUnit/Properties/Manifest.addin.xml b/MonoDevelop.XUnit/Properties/Manifest.addin.xml index abbd483..b8cb2fb 100644 --- a/MonoDevelop.XUnit/Properties/Manifest.addin.xml +++ b/MonoDevelop.XUnit/Properties/Manifest.addin.xml @@ -4,7 +4,6 @@ - diff --git a/XUnitRunner/DefaultDiscoveryVisitor.cs b/XUnitRunner/DefaultDiscoveryVisitor.cs index f06cbff..93f0db2 100644 --- a/XUnitRunner/DefaultDiscoveryVisitor.cs +++ b/XUnitRunner/DefaultDiscoveryVisitor.cs @@ -5,7 +5,7 @@ using Xunit.Abstractions; namespace XUnitRunner { - public class DefaultDiscoveryVisitor:TestMessageVisitor + public class DefaultDiscoveryVisitor: TestMessageVisitor { public List TestCases { get; private set; } Func filter; @@ -20,10 +20,10 @@ namespace XUnitRunner this.filter = filter; } - protected override bool Visit(ITestCaseDiscoveryMessage discovery) + protected override bool Visit(ITestCaseDiscoveryMessage testCaseDiscovered) { - if (filter == null || filter(discovery.TestCase)) - TestCases.Add(discovery.TestCase); + if (filter == null || filter(testCaseDiscovered.TestCase)) + TestCases.Add(testCaseDiscovered.TestCase); return true; } diff --git a/XUnitRunner/XUnitRunner.cs b/XUnitRunner/XUnitRunner.cs index c9c96a0..109e654 100644 --- a/XUnitRunner/XUnitRunner.cs +++ b/XUnitRunner/XUnitRunner.cs @@ -20,7 +20,6 @@ namespace XUnitRunner public static void PreloadAssemblies() { var path = Path.GetDirectoryName(typeof(XUnitRunner).Assembly.Location); - Assembly.LoadFrom(Path.Combine(path, "System.Runtime.InteropServices.RuntimeInformation.dll")); Assembly.LoadFrom(Path.Combine(path, "xunit.abstractions.dll")); Assembly.LoadFrom(Path.Combine(path, "xunit.assert.dll")); Assembly.LoadFrom(Path.Combine(path, "xunit.core.dll")); diff --git a/XUnitRunner/XUnitRunner.csproj b/XUnitRunner/XUnitRunner.csproj index 5268843..0ab298a 100644 --- a/XUnitRunner/XUnitRunner.csproj +++ b/XUnitRunner/XUnitRunner.csproj @@ -8,7 +8,7 @@ Exe XUnitRunner XUnitRunner - v4.6.2 + v4.7 true @@ -79,5 +79,4 @@ - \ No newline at end of file diff --git a/XUnitRunner/packages.config b/XUnitRunner/packages.config index ae6ac21..a342b1e 100644 --- a/XUnitRunner/packages.config +++ b/XUnitRunner/packages.config @@ -1,12 +1,10 @@  - - - - - - - - - + + + + + + + \ No newline at end of file