PageRenderTime 47ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/Source/Machine.Specifications.Tests/project.json

http://github.com/machine/machine.specifications
JSON | 58 lines | 58 code | 0 blank | 0 comment | 0 complexity | e1bd56984cc96c68e835d32bda7e666d 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": "nunit",
  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. "dependencies": {
  34. "Microsoft.NETCore.App": {
  35. "version": "1.*",
  36. "type": "platform"
  37. },
  38. "System.Reflection": "4.*",
  39. "System.Reflection.Extensions": "4.*",
  40. "System.Reflection.TypeExtensions": "4.*"
  41. }
  42. }
  43. },
  44. "dependencies": {
  45. "Machine.Specifications": {
  46. "target": "project"
  47. },
  48. "Example": {
  49. "target": "project"
  50. },
  51. "Example.Random": {
  52. "target": "project"
  53. },
  54. "FluentAssertions": "4.12.0",
  55. "NUnit": "3.4.1",
  56. "dotnet-test-nunit":"3.4.0-*"
  57. }
  58. }