Skip to content
This repository has been archived by the owner on Nov 27, 2017. It is now read-only.

Commit

Permalink
Preparing alpha 2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rprouse committed Jun 18, 2016
1 parent a3c9fed commit 88e055b
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 9 deletions.
8 changes: 5 additions & 3 deletions NuGet.Config
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear/>
<add key="CI Builds (AppVeyor)" value="https://ci.appveyor.com/nuget/nunit" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<!-- <clear/> -->
<add key="NUnit AppVeyor CI" value="https://ci.appveyor.com/nuget/nunit" />
<add key="NUNit MyGet Feed" value="https://www.myget.org/F/nunit/api/v2" />
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
</configuration>
4 changes: 4 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/dotnet-test-nunit/TestRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions src/dotnet-test-nunit/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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"
},

Expand Down
8 changes: 6 additions & 2 deletions test/dotnet-test-nunit.test.runner/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
5 changes: 4 additions & 1 deletion test/dotnet-test-nunit.test/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",

Expand Down

0 comments on commit 88e055b

Please sign in to comment.