project.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. "tags": [ "Rx", "Reactive", "Extensions", "Observable", "LINQ", "Events" ],
  8. "iconUrl": "http://go.microsoft.com/fwlink/?LinkId=261274",
  9. "projectUrl": "http://go.microsoft.com/fwlink/?LinkId=261273",
  10. "licenseUrl": "http://go.microsoft.com/fwlink/?LinkID=261272",
  11. "requireLicenseAcceptance": true,
  12. "dependencies": {
  13. "System.Reactive.Core": { "target": "project" }
  14. },
  15. "frameworks": {
  16. "net40": {
  17. "compilationOptions": {
  18. "define": [
  19. "NO_TASK_DELAY",
  20. "HAS_APTCA",
  21. "HAS_WINFORMS",
  22. "USE_TIMER_SELF_ROOT",
  23. "NO_WEAKREFOFT",
  24. "DESKTOPCLR",
  25. "DESKTOPCLR40"
  26. ]
  27. }
  28. },
  29. "net45": {
  30. "compilationOptions": {
  31. "define": [
  32. "NO_EVENTARGS_CONSTRAINT",
  33. "HAS_EDI",
  34. "HAS_WINRT",
  35. "HAS_PROGRESS",
  36. "PREFER_ASYNC",
  37. "HAS_AWAIT",
  38. "HAS_APTCA",
  39. "HAS_DISPATCHER_PRIORITY",
  40. "HAS_WINFORMS",
  41. "USE_TIMER_SELF_ROOT",
  42. "DESKTOPCLR",
  43. "DESKTOPCLR45"
  44. ]
  45. }
  46. }
  47. }
  48. }