project.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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.IntegrationTesting": {
  51. "target": "project"
  52. }
  53. },
  54. "frameworks": {
  55. "net45": { },
  56. "netcoreapp1.0": {
  57. "imports": [
  58. "portable-net45"
  59. ],
  60. "dependencies": {
  61. "Microsoft.NETCore.App": {
  62. "type": "platform",
  63. "version": "1.0.0"
  64. }
  65. }
  66. }
  67. }
  68. }