project.json.template 888 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. %YAML 1.2
  2. --- |
  3. {
  4. <%include file="../build_options.include" args="executable=True,includeData=True"/>
  5. "dependencies": {
  6. "Grpc.Auth": {
  7. "target": "project"
  8. },
  9. "Grpc.Core": {
  10. "target": "project"
  11. },
  12. "Google.Protobuf": "3.0.0-beta3",
  13. "CommandLineParser": "1.9.71",
  14. "NUnit": "3.2.0",
  15. "NUnitLite": "3.2.0-*"
  16. },
  17. "frameworks": {
  18. "net45": {
  19. "dependencies": {
  20. "Moq": "4.2.1510.2205"
  21. },
  22. "frameworkAssemblies": {
  23. "System.Runtime": "",
  24. "System.IO": ""
  25. }
  26. },
  27. "netcoreapp1.0": {
  28. "imports": [
  29. "portable-net45",
  30. "net45"
  31. ],
  32. "dependencies": {
  33. "Microsoft.NETCore.App": "1.0.0",
  34. "NETStandard.Library": "1.6.0",
  35. "System.Linq.Expressions": "4.1.0"
  36. }
  37. }
  38. }
  39. }