Skip to content
This repository was archived by the owner on Dec 14, 2018. It is now read-only.

Commit 49de29c

Browse files
committed
Fix for build break. Removing reference to official xunit package
1 parent d8257be commit 49de29c

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

NuGet.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<configuration>
33
<packageSources>
44
<add key="AspNetVNext" value="https://www.myget.org/F/aspnetcidev/api/v3/index.json" />
5-
<add key="xUnit.net" value="https://www.myget.org/F/xunit/api/v2/" />
65
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
76
</packageSources>
87
</configuration>

test/Microsoft.Framework.Caching.Memory.Tests/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"Microsoft.Framework.Caching.Memory": "1.0.0-*",
55
"Microsoft.Framework.DependencyInjection": "1.0.0-*",
66
"xunit": "2.1.0-*",
7-
"xunit.runner.dnx": "2.1.0-*"
7+
"xunit.runner.aspnet": "2.0.0-aspnet-*"
88
},
99
"commands": {
10-
"test": "xunit.runner.dnx"
10+
"test": "xunit.runner.aspnet"
1111
},
1212
"frameworks": {
1313
"dnx451": { }

test/Microsoft.Framework.Caching.Redis.Tests/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"Microsoft.Framework.Caching.Redis": "1.0.0-*",
55
"Microsoft.Framework.DependencyInjection": "1.0.0-*",
66
"xunit": "2.1.0-*",
7-
"xunit.runner.dnx": "2.1.0-*"
7+
"xunit.runner.aspnet": "2.0.0-aspnet-*"
88
},
99
"commands": {
10-
"test": "xunit.runner.dnx"
10+
"test": "xunit.runner.aspnet"
1111
},
1212
"frameworks": {
1313
"dnx451": { }

test/Microsoft.Framework.Caching.SqlServer.Tests/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"commands": {
3-
"test": "xunit.runner.dnx"
3+
"test": "xunit.runner.aspnet"
44
},
55
"dependencies": {
66
"Microsoft.AspNet.Testing": "1.0.0-*",
@@ -9,7 +9,7 @@
99
"Microsoft.Framework.Configuration.Json": "1.0.0-*",
1010
"Microsoft.Framework.DependencyInjection": "1.0.0-*",
1111
"xunit": "2.1.0-*",
12-
"xunit.runner.dnx": "2.1.0-*"
12+
"xunit.runner.aspnet": "2.0.0-aspnet-*"
1313
},
1414
"frameworks": {
1515
"dnx451": { },

0 commit comments

Comments
 (0)