Add CodeCoverage to tests
This commit is contained in:
parent
f1f66448f4
commit
2708b8a534
|
|
@ -9,7 +9,11 @@
|
||||||
"Microsoft.Extensions.Logging.Testing": "1.1.0-*",
|
"Microsoft.Extensions.Logging.Testing": "1.1.0-*",
|
||||||
"Moq": "4.6.36-*",
|
"Moq": "4.6.36-*",
|
||||||
"Newtonsoft.Json": "9.0.1",
|
"Newtonsoft.Json": "9.0.1",
|
||||||
"xunit": "2.2.0-*"
|
"xunit": "2.2.0-*",
|
||||||
|
"Microsoft.CodeCoverage": {
|
||||||
|
"type": "build",
|
||||||
|
"version": "1.0.1"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netcoreapp1.0": {
|
"netcoreapp1.0": {
|
||||||
|
|
@ -21,12 +25,14 @@
|
||||||
"System.Net.Http.WinHttpHandler": "4.3.0-*",
|
"System.Net.Http.WinHttpHandler": "4.3.0-*",
|
||||||
"System.Net.NetworkInformation": "4.3.0-*",
|
"System.Net.NetworkInformation": "4.3.0-*",
|
||||||
"System.Runtime.Serialization.Primitives": "4.3.0-*"
|
"System.Runtime.Serialization.Primitives": "4.3.0-*"
|
||||||
}
|
},
|
||||||
|
"imports": "dnxcore50"
|
||||||
},
|
},
|
||||||
"net451": {
|
"net451": {
|
||||||
"frameworkAssemblies": {
|
"frameworkAssemblies": {
|
||||||
"System.Net.Http": "4.0.0.0"
|
"System.Net.Http": "4.0.0.0"
|
||||||
}
|
},
|
||||||
|
"imports": "dnx451"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"buildOptions": {
|
"buildOptions": {
|
||||||
|
|
|
||||||
|
|
@ -6,7 +6,11 @@
|
||||||
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.0-*",
|
"Microsoft.AspNetCore.Server.Kestrel.Https": "1.1.0-*",
|
||||||
"Microsoft.AspNetCore.Testing": "1.1.0-*",
|
"Microsoft.AspNetCore.Testing": "1.1.0-*",
|
||||||
"Moq": "4.6.36-*",
|
"Moq": "4.6.36-*",
|
||||||
"xunit": "2.2.0-*"
|
"xunit": "2.2.0-*",
|
||||||
|
"Microsoft.CodeCoverage": {
|
||||||
|
"type": "build",
|
||||||
|
"version": "1.0.1"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"netcoreapp1.0": {
|
"netcoreapp1.0": {
|
||||||
|
|
@ -17,12 +21,14 @@
|
||||||
},
|
},
|
||||||
"System.Diagnostics.TraceSource": "4.3.0-*",
|
"System.Diagnostics.TraceSource": "4.3.0-*",
|
||||||
"System.Net.Http.WinHttpHandler": "4.3.0-*"
|
"System.Net.Http.WinHttpHandler": "4.3.0-*"
|
||||||
}
|
},
|
||||||
|
"imports": "dnxcore50"
|
||||||
},
|
},
|
||||||
"net451": {
|
"net451": {
|
||||||
"frameworkAssemblies": {
|
"frameworkAssemblies": {
|
||||||
"System.Net.Http": "4.0.0.0"
|
"System.Net.Http": "4.0.0.0"
|
||||||
}
|
},
|
||||||
|
"imports": "dnx451"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"buildOptions": {
|
"buildOptions": {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue