project.json 2.3 KB

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