project.json 1.3 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. "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": "../ReactiveX.snk",
  16. "define": [ "SIGNED" ],
  17. "nowarn": [ "CS1591" ],
  18. "xmlDoc": true,
  19. "embed": {
  20. "includeFiles": "Properties/System.Reactive.Runtime.Remoting.rd.xml"
  21. }
  22. },
  23. "dependencies": {
  24. "System.Reactive.Core": { "target": "project" }
  25. },
  26. "frameworks": {
  27. "net45": {
  28. "buildOptions": {
  29. "define": [
  30. "NO_EVENTARGS_CONSTRAINT",
  31. "HAS_EDI",
  32. "HAS_WINRT",
  33. "HAS_PROGRESS",
  34. "PREFER_ASYNC",
  35. "HAS_AWAIT",
  36. "HAS_APTCA",
  37. "HAS_DISPATCHER_PRIORITY",
  38. "HAS_WINFORMS",
  39. "USE_TIMER_SELF_ROOT",
  40. "DESKTOPCLR",
  41. "DESKTOPCLR45"
  42. ]
  43. }
  44. }
  45. }
  46. }