project.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. "grpc_csharp_ext.x64.dll": "../../../vsprojects/x64/Debug/grpc_csharp_ext.dll",
  18. "grpc_csharp_ext.x86.dll": "../../../vsprojects/Debug/grpc_csharp_ext.dll",
  19. "libgrpc_csharp_ext.x64.so": "../../../libs/dbg/libgrpc_csharp_ext.so",
  20. "libgrpc_csharp_ext.x64.dylib": "../../../libs/dbg/libgrpc_csharp_ext.dylib"
  21. }
  22. }
  23. }
  24. },
  25. "Release": {
  26. "buildOptions": {
  27. "define": [ "SIGNED" ],
  28. "keyFile": "../keys/Grpc.snk",
  29. "publicSign": true,
  30. "xmlDoc": true,
  31. "compile": {
  32. "includeFiles": [ "../Grpc.Core/Version.cs" ]
  33. },
  34. "copyToOutput": {
  35. "mappings": {
  36. "grpc_csharp_ext.x64.dll": "../../../vsprojects/x64/Release/grpc_csharp_ext.dll",
  37. "grpc_csharp_ext.x86.dll": "../../../vsprojects/Release/grpc_csharp_ext.dll",
  38. "libgrpc_csharp_ext.x64.so": "../../../libs/opt/libgrpc_csharp_ext.so",
  39. "libgrpc_csharp_ext.x64.dylib": "../../../libs/opt/libgrpc_csharp_ext.dylib"
  40. }
  41. }
  42. }
  43. }
  44. },
  45. "dependencies": {
  46. "Grpc.Core": {
  47. "target": "project"
  48. },
  49. "Newtonsoft.Json": "8.0.3",
  50. "NUnit": "3.2.0",
  51. "NUnitLite": "3.2.0-*",
  52. "NUnit.ConsoleRunner": "3.2.0",
  53. "OpenCover": "4.6.519",
  54. "ReportGenerator": "2.4.4.0"
  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. }