project.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Reactive Extensions - WPF Helpers",
  4. "description": "Windows Presentation Foundation extensions library for Rx. Contains scheduler functionality for the WPF Dispatcher.",
  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. "dependencies": {
  13. "System.Reactive.Interfaces": { "target": "project" },
  14. "System.Reactive.Core": { "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. "frameworkAssemblies": {
  28. "WindowsBase": "4.0.0.0"
  29. }
  30. },
  31. "net45": {
  32. "compilationOptions": {
  33. "define": [
  34. "NO_EVENTARGS_CONSTRAINT",
  35. "HAS_EDI",
  36. "HAS_WINRT",
  37. "HAS_PROGRESS",
  38. "PREFER_ASYNC",
  39. "HAS_AWAIT",
  40. "HAS_APTCA",
  41. "HAS_DISPATCHER_PRIORITY",
  42. "HAS_WINFORMS",
  43. "USE_TIMER_SELF_ROOT"
  44. ]
  45. },
  46. "frameworkAssemblies": {
  47. "System.Windows": "4.0.0.0",
  48. "WindowsBase": "4.0.0.0"
  49. }
  50. }
  51. }
  52. }