Updating to RTM builds of xunit and Moq

This commit is contained in:
Pranav K 2016-06-30 15:36:11 -07:00
parent 36e5c0e6fa
commit 24439bc400
2 changed files with 14 additions and 21 deletions

13
.gitignore vendored
View File

@ -8,15 +8,18 @@ TestResults/
_ReSharper.*/ _ReSharper.*/
packages/ packages/
artifacts/ artifacts/
.build/
PublishProfiles/ PublishProfiles/
.vs/
bower_components/
node_modules/
debugSettings.json
project.lock.json
*.user *.user
*.suo *.suo
*.cache *.cache
*.docstates *.docstates
_ReSharper.* _ReSharper.*
nuget.exe nuget.exe
project.lock.json
*net45.csproj *net45.csproj
*net451.csproj *net451.csproj
*k10.csproj *k10.csproj
@ -28,4 +31,8 @@ project.lock.json
*.ncrunchsolution *.ncrunchsolution
*.*sdf *.*sdf
*.ipch *.ipch
.build/ .settings
*.sln.ide
node_modules
*launchSettings.json
*.orig

View File

@ -3,10 +3,11 @@
"warningsAsErrors": true "warningsAsErrors": true
}, },
"dependencies": { "dependencies": {
"dotnet-test-xunit": "1.0.0-*", "dotnet-test-xunit": "2.2.0-*",
"Microsoft.AspNetCore.JsonPatch": "1.1.0-*", "Microsoft.AspNetCore.JsonPatch": "1.1.0-*",
"Microsoft.AspNetCore.Testing": "1.1.0-*", "Microsoft.AspNetCore.Testing": "1.1.0-*",
"xunit": "2.1.0" "Moq": "4.6.25-*",
"xunit": "2.2.0-*"
}, },
"testRunner": "xunit", "testRunner": "xunit",
"frameworks": { "frameworks": {
@ -16,30 +17,15 @@
"version": "1.0.0-*", "version": "1.0.0-*",
"type": "platform" "type": "platform"
}, },
"moq.netcore": "4.4.0-beta8",
"System.Diagnostics.Process": "4.1.0-*",
"System.Diagnostics.TraceSource": "4.0.0-*" "System.Diagnostics.TraceSource": "4.0.0-*"
}, },
"imports": [ "imports": "dotnet5.4"
"dnxcore50",
"portable-net451+win8"
]
}, },
"net451": { "net451": {
"frameworkAssemblies": { "frameworkAssemblies": {
"System.Linq.Expressions": { "System.Linq.Expressions": {
"type": "build" "type": "build"
},
"System.Runtime": {
"type": "build"
},
"System.Threading.Tasks": {
"type": "build"
} }
},
"dependencies": {
"Moq": "4.2.1312.1622",
"xunit.runner.console": "2.1.0"
} }
} }
} }