project.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "version": "3.0.0-*",
  3. "title": "System.Reactive.Runtime.Remoting",
  4. "description": "Reactive Extensions Remoting Library used to expose observable sequences through .NET Remoting.",
  5. "authors": ["Microsoft"],
  6. "copyright": "Copyright (C) Microsoft Corporation",
  7. "packOptions": {
  8. "tags": ["Rx", "Reactive", "Extensions", "Observable", "LINQ", "Events"],
  9. "iconUrl": "http://go.microsoft.com/fwlink/?LinkId=261274",
  10. "projectUrl": "http://go.microsoft.com/fwlink/?LinkId=261273",
  11. "licenseUrl": "http://go.microsoft.com/fwlink/?LinkID=261272",
  12. "requireLicenseAcceptance": true
  13. },
  14. "buildOptions": {
  15. "keyFile": "../35MSSharedLib1024.snk",
  16. "publicSign": true,
  17. "define": [ "SIGNED" ],
  18. "nowarn": [ "CS1591" ],
  19. "xmlDoc": true
  20. },
  21. "configurations": {
  22. "ReleaseDelaySigned": {
  23. "buildOptions": {
  24. "publicSign": false,
  25. "delaySign": true,
  26. "define": ["RELEASE", "TRACE"],
  27. "optimize": true
  28. }
  29. }
  30. },
  31. "dependencies": {
  32. "System.Reactive.Core": { "target": "project" }
  33. },
  34. "frameworks": {
  35. "net40": {
  36. "buildOptions": {
  37. "define": [
  38. "NO_TASK_DELAY",
  39. "HAS_APTCA",
  40. "HAS_WINFORMS",
  41. "USE_TIMER_SELF_ROOT",
  42. "NO_WEAKREFOFT",
  43. "DESKTOPCLR",
  44. "DESKTOPCLR40"
  45. ]
  46. }
  47. },
  48. "net45": {
  49. "buildOptions": {
  50. "define": [
  51. "NO_EVENTARGS_CONSTRAINT",
  52. "HAS_EDI",
  53. "HAS_WINRT",
  54. "HAS_PROGRESS",
  55. "PREFER_ASYNC",
  56. "HAS_AWAIT",
  57. "HAS_APTCA",
  58. "HAS_DISPATCHER_PRIORITY",
  59. "HAS_WINFORMS",
  60. "USE_TIMER_SELF_ROOT",
  61. "DESKTOPCLR",
  62. "DESKTOPCLR45"
  63. ]
  64. }
  65. }
  66. }
  67. }