project.json.template 834 B

123456789101112131415161718192021222324252627282930313233343536
  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",
  13. "CommandLineParser.Unofficial": "2.0.275",
  14. "Moq": "4.6.38-alpha",
  15. "NUnit": "3.2.0",
  16. "NUnitLite": "3.2.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": "1.0.0",
  31. "NETStandard.Library": "1.6.0",
  32. "System.Linq.Expressions": "4.1.0"
  33. }
  34. }
  35. }
  36. }