project.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. },
  19. "configurations": {
  20. "ReleaseDelaySigned": {
  21. "buildOptions": {
  22. "publicSign": false,
  23. "delaySign": true,
  24. "define": ["RELEASE", "TRACE"],
  25. "optimize": true
  26. }
  27. }
  28. },
  29. "dependencies": {
  30. "System.Reactive.Core": { "target": "project" }
  31. },
  32. "frameworks": {
  33. "net40": {
  34. "buildOptions": {
  35. "define": [
  36. "NO_TASK_DELAY",
  37. "HAS_APTCA",
  38. "HAS_WINFORMS",
  39. "USE_TIMER_SELF_ROOT",
  40. "NO_WEAKREFOFT",
  41. "DESKTOPCLR",
  42. "DESKTOPCLR40"
  43. ]
  44. }
  45. },
  46. "net45": {
  47. "buildOptions": {
  48. "define": [
  49. "NO_EVENTARGS_CONSTRAINT",
  50. "HAS_EDI",
  51. "HAS_WINRT",
  52. "HAS_PROGRESS",
  53. "PREFER_ASYNC",
  54. "HAS_AWAIT",
  55. "HAS_APTCA",
  56. "HAS_DISPATCHER_PRIORITY",
  57. "HAS_WINFORMS",
  58. "USE_TIMER_SELF_ROOT",
  59. "DESKTOPCLR",
  60. "DESKTOPCLR45"
  61. ]
  62. }
  63. }
  64. }
  65. }