project.json 872 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "buildOptions": {
  3. "debugType": "portable",
  4. "keyFile": "../../keys/Google.Protobuf.snk"
  5. },
  6. "configurations": {
  7. "Debug": {
  8. "buildOptions": {
  9. "define": [ "DEBUG", "TRACE" ]
  10. }
  11. },
  12. "Release": {
  13. "buildOptions": {
  14. "define": [ "RELEASE", "TRACE" ],
  15. "optimize": true
  16. }
  17. }
  18. },
  19. "dependencies": {
  20. "Google.Protobuf": { "target": "project" },
  21. "NUnit": "3.4.0",
  22. "dotnet-test-nunit": "3.4.0-alpha-2",
  23. },
  24. "testRunner": "nunit",
  25. "frameworks": {
  26. "netcoreapp1.0": {
  27. "imports" : [ "dnxcore50", "netcoreapp1.0", "portable-net45+win8" ],
  28. "buildOptions": {
  29. "define": [ "PCL" ]
  30. },
  31. "dependencies": {
  32. "Microsoft.NETCore.App": {
  33. "version": "1.0.0",
  34. "type": "platform"
  35. },
  36. "System.Console": "4.0.0"
  37. }
  38. }
  39. }
  40. }