project.json 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - Platform Services Library",
  4. "description": "Reactive Extensions Platform Services Library used to access platform-specific functionality and enlightenment services.",
  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. "exclude": [ "Strings_PlatformServices.Designer.cs" ],
  13. "dependencies": {
  14. "System.Reactive.Linq": { "target": "project" }
  15. },
  16. "frameworks": {
  17. "net40": {
  18. "compilationOptions": {
  19. "define": [
  20. "NO_TASK_DELAY",
  21. "HAS_APTCA",
  22. "HAS_WINFORMS",
  23. "USE_TIMER_SELF_ROOT",
  24. "NO_WEAKREFOFT"
  25. ]
  26. }
  27. },
  28. "net45": {
  29. "compilationOptions": {
  30. "define": [
  31. "NO_EVENTARGS_CONSTRAINT",
  32. "HAS_EDI",
  33. "HAS_WINRT",
  34. "HAS_PROGRESS",
  35. "PREFER_ASYNC",
  36. "HAS_AWAIT",
  37. "HAS_APTCA",
  38. "HAS_DISPATCHER_PRIORITY",
  39. "HAS_WINFORMS",
  40. "USE_TIMER_SELF_ROOT"
  41. ]
  42. }
  43. },
  44. "dotnet5.1": {
  45. "compilationOptions": {
  46. "define": [
  47. "NO_EVENTARGS_CONSTRAINT",
  48. "HAS_EDI",
  49. "HAS_WINRT",
  50. "HAS_PROGRESS",
  51. "PREFER_ASYNC",
  52. "HAS_AWAIT",
  53. "HAS_APTCA",
  54. "NO_REMOTING",
  55. "NO_SERIALIZABLE",
  56. "NO_THREAD",
  57. "CRIPPLED_REFLECTION",
  58. "PLIB",
  59. "USE_TIMER_SELF_ROOT"
  60. ]
  61. },
  62. "dependencies": {
  63. "System.Diagnostics.Tools": "4.0.0",
  64. "System.Diagnostics.Debug": "4.0.10"
  65. }
  66. },
  67. "dotnet5.4": {
  68. "compilationOptions": {
  69. "define": [
  70. "NO_EVENTARGS_CONSTRAINT",
  71. "HAS_EDI",
  72. "HAS_WINRT",
  73. "HAS_PROGRESS",
  74. "PREFER_ASYNC",
  75. "HAS_AWAIT",
  76. "HAS_APTCA",
  77. "NO_REMOTING",
  78. "NO_SERIALIZABLE",
  79. "NO_THREAD",
  80. "CRIPPLED_REFLECTION",
  81. "PLIB",
  82. "USE_TIMER_SELF_ROOT"
  83. ]
  84. },
  85. "dependencies": {
  86. "System.Diagnostics.Tools": "4.0.1-beta-23516",
  87. "System.Diagnostics.Debug": "4.0.11-beta-23516"
  88. }
  89. }
  90. }
  91. }