Update test project.json to not depend on Moq for CoreCLR.

This commit is contained in:
N. Taylor Mullen 2015-07-10 15:38:37 -07:00
parent f2e1f28908
commit c9c07bd393
1 changed files with 23 additions and 20 deletions

View File

@ -1,25 +1,28 @@
{ {
"version": "1.0.0", "version": "1.0.0",
"resource": "TestFiles/**/*", "resource": "TestFiles/**/*",
"dependencies": { "dependencies": {
"Moq": "4.2.1312.1622", "Microsoft.AspNet.Razor": "4.0.0-*",
"Microsoft.AspNet.Razor": "4.0.0-*", "Microsoft.AspNet.Testing": "1.0.0-*",
"Microsoft.AspNet.Testing": "1.0.0-*", "xunit.runner.aspnet": "2.0.0-aspnet-*"
"xunit.runner.aspnet": "2.0.0-aspnet-*" },
}, "commands": {
"commands": { "test": "xunit.runner.aspnet"
"test": "xunit.runner.aspnet" },
}, "frameworks": {
"frameworks": { "dnx451": {
"dnx451": { }, "dependencies": {
"dnxcore50": { "Moq": "4.2.1312.1622"
"dependencies": { }
"System.Diagnostics.TraceSource": "4.0.0-beta-*",
"System.Reflection.TypeExtensions": "4.0.0-beta-*",
"System.Runtime.Serialization.Primitives": "4.0.10-beta-*"
}
}
}, },
"dnxcore50": {
"dependencies": {
"System.Diagnostics.TraceSource": "4.0.0-beta-*",
"System.Reflection.TypeExtensions": "4.0.0-beta-*",
"System.Runtime.Serialization.Primitives": "4.0.10-beta-*"
}
}
},
"compilationOptions": { "compilationOptions": {
"define": [ "__RemoveThisBitTo__GENERATE_BASELINES" ] "define": [ "__RemoveThisBitTo__GENERATE_BASELINES" ]
} }