project.json 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - WPF Helpers",
  4. "description":
  5. "Windows Presentation Foundation extensions library for Rx. Contains scheduler functionality for the WPF Dispatcher.",
  6. "authors": ["Microsoft"],
  7. "copyright": "Copyright (C) Microsoft Corporation",
  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. "dependencies": {
  14. "System.Reactive.Interfaces": { "target": "project" },
  15. "System.Reactive.Core": { "target": "project" }
  16. },
  17. "frameworks": {
  18. "net40": {
  19. "compilationOptions": {
  20. "define": [
  21. "NO_TASK_DELAY",
  22. "HAS_APTCA",
  23. "HAS_WINFORMS",
  24. "USE_TIMER_SELF_ROOT",
  25. "NO_WEAKREFOFT",
  26. "DESKTOPCLR",
  27. "DESKTOPCLR40"
  28. ]
  29. },
  30. "frameworkAssemblies": {
  31. "WindowsBase": "4.0.0.0"
  32. }
  33. },
  34. "net45": {
  35. "compilationOptions": {
  36. "define": [
  37. "NO_EVENTARGS_CONSTRAINT",
  38. "HAS_EDI",
  39. "HAS_WINRT",
  40. "HAS_PROGRESS",
  41. "PREFER_ASYNC",
  42. "HAS_AWAIT",
  43. "HAS_APTCA",
  44. "HAS_DISPATCHER_PRIORITY",
  45. "HAS_WINFORMS",
  46. "USE_TIMER_SELF_ROOT",
  47. "DESKTOPCLR",
  48. "DESKTOPCLR45"
  49. ]
  50. },
  51. "frameworkAssemblies": {
  52. "System.Windows": "4.0.0.0",
  53. "WindowsBase": "4.0.0.0"
  54. }
  55. },
  56. "uap10.0": {
  57. "compilationOptions": {
  58. "define": [
  59. "NO_EVENTARGS_CONSTRAINT",
  60. "HAS_EDI",
  61. "HAS_WINRT",
  62. "HAS_PROGRESS",
  63. "PREFER_ASYNC",
  64. "HAS_AWAIT",
  65. "NO_REMOTING",
  66. "NO_SERIALIZABLE",
  67. "NO_THREAD",
  68. "CRIPPLED_REFLECTION",
  69. "USE_TIMER_SELF_ROOT",
  70. "WINDOWS"
  71. ]
  72. },
  73. "dependencies": {
  74. "System.Diagnostics.Tools": "4.0.1-beta-23516",
  75. "System.Diagnostics.Debug": "4.0.11-beta-23516"
  76. }
  77. }
  78. }
  79. }