project.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - Interfaces Library",
  4. "description": "Reactive Extensions Interfaces Library containing essential interfaces.",
  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. "compile": {
  20. "includeFiles": [ "../GlobalAssemblyVersion.cs" ]
  21. }
  22. },
  23. "frameworks": {
  24. "net45": {
  25. "buildOptions": {
  26. "define": [
  27. "NO_EVENTARGS_CONSTRAINT",
  28. "HAS_EDI",
  29. "HAS_WINRT",
  30. "HAS_PROGRESS",
  31. "PREFER_ASYNC",
  32. "HAS_AWAIT",
  33. "HAS_APTCA",
  34. "HAS_DISPATCHER_PRIORITY",
  35. "HAS_WINFORMS",
  36. "USE_TIMER_SELF_ROOT",
  37. "DESKTOPCLR",
  38. "DESKTOPCLR45"
  39. ]
  40. }
  41. },
  42. "netstandard1.0": {
  43. "buildOptions": {
  44. "define": [
  45. "NO_EVENTARGS_CONSTRAINT",
  46. "HAS_EDI",
  47. "HAS_WINRT",
  48. "HAS_PROGRESS",
  49. "PREFER_ASYNC",
  50. "HAS_AWAIT",
  51. "HAS_APTCA",
  52. "NO_REMOTING",
  53. "NO_SERIALIZABLE",
  54. "NO_THREAD",
  55. "CRIPPLED_REFLECTION",
  56. "NO_CDS_COLLECTIONS",
  57. "USE_TIMER_SELF_ROOT",
  58. "PLIB"
  59. ]
  60. },
  61. "dependencies": {
  62. "NETStandard.Library": "1.6.0"
  63. }
  64. }
  65. }
  66. }