diff --git a/NuGet.Config b/NuGet.Config index c0a7eff..e36058b 100644 --- a/NuGet.Config +++ b/NuGet.Config @@ -1,8 +1,10 @@ - - - + + + + + diff --git a/appveyor.yml b/appveyor.yml index 6dcfb94..daf593e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -16,7 +16,11 @@ before_build: build_script: - cmd: dotnet build -c Release test\dotnet-test-nunit.test.runner\ + +test_script: - cmd: dotnet run -c Release -p test\dotnet-test-nunit.test.runner\ + +after_test: - cmd: dotnet pack -c Release src\dotnet-test-nunit\ test: off diff --git a/src/dotnet-test-nunit/TestRunner.cs b/src/dotnet-test-nunit/TestRunner.cs index 9f705c3..ae67911 100644 --- a/src/dotnet-test-nunit/TestRunner.cs +++ b/src/dotnet-test-nunit/TestRunner.cs @@ -25,7 +25,7 @@ using Microsoft.Extensions.Testing.Abstractions; using Newtonsoft.Json; using NUnit.Common; -using NUnit.Engine.Compatibility; +using NUnit.Compatibility; using NUnit.Engine; using NUnit.Options; using NUnit.Runner.Interfaces; diff --git a/src/dotnet-test-nunit/project.json b/src/dotnet-test-nunit/project.json index 8ddca4a..e5f5529 100644 --- a/src/dotnet-test-nunit/project.json +++ b/src/dotnet-test-nunit/project.json @@ -4,7 +4,7 @@ "title": "NUnit .NET Core Runner", "description": "NUnit console and Visual Studio runner for .NET Core and .NET 4.5.1+", "name": "dotnet-test-nunit", - "version": "3.4.0-alpha-1", + "version": "3.4.0-alpha-2", "buildOptions": { "emitEntryPoint": true, "preserveCompilationContext": true, @@ -24,7 +24,7 @@ "dependencies": { "Microsoft.Extensions.Testing.Abstractions": "1.0.0-preview1-002702", "Microsoft.Extensions.DependencyModel": "1.0.0-rc2-final", - "NUnit.Portable.Agent": "3.4.0-alpha-1", + "NUnit.Portable.Agent": "3.4.0-alpha-2", "NETStandard.Library": "1.5.0-rc2-24027" }, diff --git a/test/dotnet-test-nunit.test.runner/project.json b/test/dotnet-test-nunit.test.runner/project.json index 6c8c774..5cf51a2 100644 --- a/test/dotnet-test-nunit.test.runner/project.json +++ b/test/dotnet-test-nunit.test.runner/project.json @@ -12,8 +12,12 @@ "dependencies": { "NUnitLite": "3.2.0", - "dotnet-test-nunit": "3.4.0", - "dotnet-test-nunit.test": "3.4.0" + "dotnet-test-nunit": { + "target": "project" + }, + "dotnet-test-nunit.test": { + "target": "project" + } }, "frameworks": { diff --git a/test/dotnet-test-nunit.test/project.json b/test/dotnet-test-nunit.test/project.json index 187e42e..33f9e44 100644 --- a/test/dotnet-test-nunit.test/project.json +++ b/test/dotnet-test-nunit.test/project.json @@ -11,7 +11,10 @@ "dependencies": { "NUnit": "3.2.0", - "dotnet-test-nunit": "3.4.0" + "NUnit.Portable.Agent": "3.4.0-alpha-2", + "dotnet-test-nunit": { + "target": "project" + } }, "testRunner": "nunit",