project.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. "compile": {
  23. "includeFiles": [ "../GlobalAssemblyVersion.cs" ]
  24. }
  25. },
  26. "dependencies": {
  27. "System.Reactive.Core": { "target": "project" }
  28. },
  29. "frameworks": {
  30. "net45": {
  31. "buildOptions": {
  32. "define": [
  33. "NO_EVENTARGS_CONSTRAINT",
  34. "HAS_EDI",
  35. "HAS_WINRT",
  36. "HAS_PROGRESS",
  37. "PREFER_ASYNC",
  38. "HAS_AWAIT",
  39. "HAS_APTCA",
  40. "HAS_DISPATCHER_PRIORITY",
  41. "HAS_WINFORMS",
  42. "USE_TIMER_SELF_ROOT",
  43. "DESKTOPCLR",
  44. "DESKTOPCLR45"
  45. ]
  46. }
  47. }
  48. }
  49. }