project.json.template 844 B

1234567891011121314151617181920212223242526272829303132333435363738
  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.2.0",
  13. "CommandLineParser": "2.1.1-beta",
  14. "Moq": "4.7.0",
  15. "NUnit": "3.6.0",
  16. "NUnitLite": "3.6.0"
  17. },
  18. "frameworks": {
  19. "net45": {
  20. "frameworkAssemblies": {
  21. "System.Runtime": "",
  22. "System.IO": ""
  23. }
  24. },
  25. "netcoreapp1.0": {
  26. "imports": [
  27. "portable-net45"
  28. ],
  29. "dependencies": {
  30. "Microsoft.NETCore.App": {
  31. "type": "platform",
  32. "version": "1.0.0"
  33. },
  34. "System.Linq.Expressions": "4.1.0"
  35. }
  36. }
  37. }
  38. }