project.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. "dependencies": {
  24. "NETStandard.Library": "1.6.0"
  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. "netstandard1.0": {
  46. "buildOptions": {
  47. "define": [
  48. "NO_EVENTARGS_CONSTRAINT",
  49. "HAS_EDI",
  50. "HAS_WINRT",
  51. "HAS_PROGRESS",
  52. "PREFER_ASYNC",
  53. "HAS_AWAIT",
  54. "HAS_APTCA",
  55. "NO_REMOTING",
  56. "NO_SERIALIZABLE",
  57. "NO_THREAD",
  58. "CRIPPLED_REFLECTION",
  59. "NO_CDS_COLLECTIONS",
  60. "USE_TIMER_SELF_ROOT",
  61. "PLIB"
  62. ]
  63. }
  64. }
  65. }
  66. }