project.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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": "../../../cmake/build/x64/Debug/grpc_csharp_ext.dll",
  20. "grpc_csharp_ext.x86.dll": "../../../cmake/build/Win32/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": "../../../cmake/build/x64/Release/grpc_csharp_ext.dll",
  41. "grpc_csharp_ext.x86.dll": "../../../cmake/build/Win32/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.2.0",
  57. "CommandLineParser": "2.1.1-beta",
  58. "Moq": "4.7.0",
  59. "NUnit": "3.6.0",
  60. "NUnitLite": "3.6.0"
  61. },
  62. "frameworks": {
  63. "net45": {
  64. "frameworkAssemblies": {}
  65. },
  66. "netcoreapp1.0": {
  67. "imports": [
  68. "portable-net45"
  69. ],
  70. "dependencies": {
  71. "Microsoft.NETCore.App": {
  72. "type": "platform",
  73. "version": "1.0.0"
  74. },
  75. "System.Linq.Expressions": "4.1.0"
  76. }
  77. }
  78. }
  79. }