PageRenderTime 42ms CodeModel.GetById 16ms RepoModel.GetById 1ms app.codeStats 0ms

/Source/Machine.Specifications.Specs/project.json

http://github.com/machine/machine.specifications
JSON | 69 lines | 69 code | 0 blank | 0 comment | 0 complexity | 60ff35319e16474eb245915e865cc34e MD5 | raw file
Possible License(s): Apache-2.0, GPL-2.0, LGPL-2.1, BSD-3-Clause, MIT, CC-BY-SA-3.0
  1. {
  2. "version": "1-*",
  3. "buildOptions": {
  4. "nowarn": [
  5. "169"
  6. ],
  7. "define": [
  8. "DEBUG", // needed for Trace*/Debug.* tests
  9. "TRACE"// needed for Trace*/Debug.* tests
  10. ]
  11. },
  12. "configurations": {
  13. "Release": {
  14. "buildOptions": {
  15. "define": [
  16. "CLEAN_EXCEPTION_STACK_TRACE"
  17. ]
  18. }
  19. }
  20. },
  21. "testRunner": "mspec",
  22. "frameworks": {
  23. "net461": {
  24. "dependencies": {
  25. "Microsoft.NETCore.Platforms": {
  26. "version": "*",
  27. "type":"build"
  28. }
  29. }
  30. },
  31. "netcoreapp1.0": {
  32. "imports": ["dotnet"], // for FluentAssertions
  33. "buildOptions": {
  34. "define": [
  35. "NETCORE"
  36. ]
  37. },
  38. "dependencies": {
  39. "Microsoft.NETCore.App": {
  40. "version": "1.*",
  41. "type": "platform"
  42. },
  43. "System.Reflection": "4.*",
  44. "System.Reflection.Extensions": "4.*",
  45. "System.Reflection.TypeExtensions": "4.*"
  46. }
  47. }
  48. },
  49. "dependencies": {
  50. "Machine.Specifications": {
  51. "version": "",
  52. "target": "project"
  53. },
  54. "Example": {
  55. "version": "",
  56. "target": "project"
  57. },
  58. "Example.Random": {
  59. "version": "",
  60. "target": "project"
  61. },
  62. "Example.Failing": {
  63. "version": "",
  64. "target": "project"
  65. },
  66. "FluentAssertions": "4.12.0",
  67. "dotnet-test-mspec": "0.2-*"
  68. }
  69. }