project.json 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. "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. "frameworks": {
  13. "net40": {
  14. "compilationOptions": {
  15. "define": [
  16. "NO_TASK_DELAY",
  17. "HAS_APTCA",
  18. "HAS_WINFORMS",
  19. "USE_TIMER_SELF_ROOT",
  20. "NO_WEAKREFOFT",
  21. "DESKTOPCLR",
  22. "DESKTOPCLR40"
  23. ]
  24. }
  25. },
  26. "net45": {
  27. "compilationOptions": {
  28. "define": [
  29. "NO_EVENTARGS_CONSTRAINT",
  30. "HAS_EDI",
  31. "HAS_WINRT",
  32. "HAS_PROGRESS",
  33. "PREFER_ASYNC",
  34. "HAS_AWAIT",
  35. "HAS_APTCA",
  36. "HAS_DISPATCHER_PRIORITY",
  37. "HAS_WINFORMS",
  38. "USE_TIMER_SELF_ROOT",
  39. "DESKTOPCLR",
  40. "DESKTOPCLR45"
  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. "NO_CDS_COLLECTIONS",
  59. "USE_TIMER_SELF_ROOT",
  60. "PLIB"
  61. ]
  62. },
  63. "dependencies": {
  64. "System.Diagnostics.Tools": "4.0.1-rc3-23823",
  65. "System.Linq": "4.0.1-rc3-23823",
  66. "System.Linq.Expressions": "4.0.11-rc3-23823",
  67. "System.Resources.ResourceManager": "4.0.1-rc3-23823",
  68. "System.Threading": "4.0.11-rc3-23823",
  69. "System.Runtime": "4.1.0-rc3-23823"
  70. }
  71. }
  72. }
  73. }