project.json 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "buildOptions": {
  3. "emitEntryPoint": true
  4. },
  5. "configurations": {
  6. "Debug": {
  7. "buildOptions": {
  8. "define": [ "SIGNED" ],
  9. "keyFile": "../keys/Grpc.snk",
  10. "xmlDoc": true,
  11. "compile": {
  12. "includeFiles": [ "../Grpc.Core/Version.cs" ]
  13. },
  14. "copyToOutput": {
  15. "mappings": {
  16. "data/ca.pem": "../Grpc.IntegrationTesting/data/ca.pem",
  17. "data/server1.key": "../Grpc.IntegrationTesting/data/server1.key",
  18. "data/server1.pem": "../Grpc.IntegrationTesting/data/server1.pem",
  19. "grpc_csharp_ext.x64.dll": "../../../vsprojects/x64/Debug/grpc_csharp_ext.dll",
  20. "grpc_csharp_ext.x86.dll": "../../../vsprojects/Debug/grpc_csharp_ext.dll",
  21. "libgrpc_csharp_ext.x64.so": "../../../libs/dbg/libgrpc_csharp_ext.so",
  22. "libgrpc_csharp_ext.x64.dylib": "../../../libs/dbg/libgrpc_csharp_ext.dylib"
  23. }
  24. }
  25. }
  26. },
  27. "Release": {
  28. "buildOptions": {
  29. "define": [ "SIGNED" ],
  30. "keyFile": "../keys/Grpc.snk",
  31. "xmlDoc": true,
  32. "compile": {
  33. "includeFiles": [ "../Grpc.Core/Version.cs" ]
  34. },
  35. "copyToOutput": {
  36. "mappings": {
  37. "data/ca.pem": "../Grpc.IntegrationTesting/data/ca.pem",
  38. "data/server1.key": "../Grpc.IntegrationTesting/data/server1.key",
  39. "data/server1.pem": "../Grpc.IntegrationTesting/data/server1.pem",
  40. "grpc_csharp_ext.x64.dll": "../../../vsprojects/x64/Release/grpc_csharp_ext.dll",
  41. "grpc_csharp_ext.x86.dll": "../../../vsprojects/Release/grpc_csharp_ext.dll",
  42. "libgrpc_csharp_ext.x64.so": "../../../libs/opt/libgrpc_csharp_ext.so",
  43. "libgrpc_csharp_ext.x64.dylib": "../../../libs/opt/libgrpc_csharp_ext.dylib"
  44. }
  45. }
  46. }
  47. }
  48. },
  49. "dependencies": {
  50. "Grpc.Auth": {
  51. "target": "project"
  52. },
  53. "Grpc.Core": {
  54. "target": "project"
  55. },
  56. "Google.Protobuf": "3.0.0",
  57. "CommandLineParser.Unofficial": "2.0.275",
  58. "Moq": "4.6.38-alpha",
  59. "NUnit": "3.2.0",
  60. "NUnitLite": "3.2.0-*"
  61. },
  62. "frameworks": {
  63. "net45": {
  64. "frameworkAssemblies": {
  65. "System.Runtime": "",
  66. "System.IO": ""
  67. }
  68. },
  69. "netcoreapp1.0": {
  70. "imports": [
  71. "portable-net45"
  72. ],
  73. "dependencies": {
  74. "Microsoft.NETCore.App": {
  75. "type": "platform",
  76. "version": "1.0.0"
  77. },
  78. "System.Linq.Expressions": "4.1.0"
  79. }
  80. }
  81. }
  82. }