project.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "version": "2.0.0-*",
  3. "title": "Interactive Extensions - Async Providers Library",
  4. "description": "Interactive Extensions Async Providers Library used to build query providers and express queries over async enumerable sequences.",
  5. "authors": ["Microsoft"],
  6. "copyright": "Copyright (C) Microsoft Corporation",
  7. "packOptions": {
  8. "tags": ["Ix", "Interactive", "Extensions", "Enumerable", "Asynchronous"],
  9. "iconUrl": "http://go.microsoft.com/fwlink/?LinkId=261274",
  10. "projectUrl": "https://github.com/Reactive-Extensions/Rx.NET",
  11. "licenseUrl": "https://raw.githubusercontent.com/Reactive-Extensions/Rx.NET/master/Ix.NET/Source/license.txt",
  12. "requireLicenseAcceptance": true
  13. },
  14. "dependencies": {
  15. "System.Interactive.Async": { "target": "project" }
  16. },
  17. "frameworks": {
  18. "net40": {
  19. "buildOptions": {
  20. "define": [
  21. "HAS_APTCA",
  22. "DESKTOPCLR",
  23. "DESKTOPCLR40"
  24. ]
  25. }
  26. },
  27. "net45": {
  28. "buildOptions": {
  29. "define": [
  30. "HAS_AWAIT",
  31. "HAS_APTCA",
  32. "DESKTOPCLR",
  33. "DESKTOPCLR45"
  34. ]
  35. }
  36. },
  37. "netstandard1.0": {
  38. "buildOptions": {
  39. "define": [
  40. "HAS_AWAIT",
  41. "CRIPPLED_REFLECTION",
  42. "PLIB"
  43. ]
  44. },
  45. "dependencies": {
  46. "System.Linq.Expressions": "4.0.11-rc2-24027",
  47. "System.Linq.Queryable": "4.0.1-rc2-24027"
  48. }
  49. }
  50. }
  51. }