project.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "version": "2.0.0-*",
  3. "title": "Interactive Extensions - Async Library",
  4. "description":
  5. "Interactive Extensions Async Library used to express queries over asynchronous enumerable sequences.",
  6. "authors": ["Microsoft"],
  7. "copyright": "Copyright (C) Microsoft Corporation",
  8. "packOptions": {
  9. "tags": ["Ix", "Interactive", "Extensions", "Enumerable", "Asynchronous"],
  10. "iconUrl": "http://go.microsoft.com/fwlink/?LinkId=261274",
  11. "projectUrl": "https://github.com/Reactive-Extensions/Rx.NET",
  12. "licenseUrl": "https://raw.githubusercontent.com/Reactive-Extensions/Rx.NET/master/Ix.NET/Source/license.txt",
  13. "requireLicenseAcceptance": true
  14. },
  15. "frameworks": {
  16. "net40": {
  17. "buildOptions": {
  18. "define": [
  19. "HAS_APTCA",
  20. "DESKTOPCLR",
  21. "DESKTOPCLR40"
  22. ]
  23. }
  24. },
  25. "net45": {
  26. "buildOptions": {
  27. "define": [
  28. "HAS_AWAIT",
  29. "HAS_APTCA",
  30. "DESKTOPCLR",
  31. "DESKTOPCLR45"
  32. ]
  33. }
  34. },
  35. "netstandard1.0": {
  36. "buildOptions": {
  37. "define": [
  38. "HAS_AWAIT",
  39. "CRIPPLED_REFLECTION",
  40. "PLIB"
  41. ]
  42. },
  43. "dependencies": {
  44. "NETStandard.Library": "1.5.0-rc2-24027"
  45. }
  46. },
  47. "sl5": {
  48. "buildOptions": {
  49. "define": [
  50. "NO_SERIALIZABLE",
  51. "NO_TPL",
  52. "NO_REMOTING",
  53. "NO_SEMAPHORE",
  54. "NO_RXINTERFACES",
  55. "SILVERLIGHT",
  56. "SILVERLIGHT5"
  57. ]
  58. },
  59. "dependencies": {
  60. "Microsoft.TargetingPack.Private.Silverlight.v5": "1.0.2"
  61. }
  62. }
  63. }
  64. }