project.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "version": "2.0.0-*",
  3. "title": "Interactive Extensions - Providers Library",
  4. "description":
  5. "Interactive Extensions Providers Library used to build query providers and express queries over enumerable sequences.",
  6. "authors": ["Microsoft"],
  7. "copyright": "Copyright (C) Microsoft Corporation",
  8. "packOptions": {
  9. "tags": ["Ix", "Interactive", "Extensions", "Enumerable"],
  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. "dependencies": {
  16. "System.Interactive": { "target": "project" }
  17. },
  18. "frameworks": {
  19. "net40": {
  20. "buildOptions": {
  21. "define": [
  22. "HAS_APTCA",
  23. "DESKTOPCLR",
  24. "DESKTOPCLR40"
  25. ]
  26. }
  27. },
  28. "net45": {
  29. "buildOptions": {
  30. "define": [
  31. "HAS_AWAIT",
  32. "HAS_APTCA",
  33. "DESKTOPCLR",
  34. "DESKTOPCLR45"
  35. ]
  36. }
  37. },
  38. "netstandard1.0": {
  39. "buildOptions": {
  40. "define": [
  41. "HAS_AWAIT",
  42. "CRIPPLED_REFLECTION",
  43. "PLIB"
  44. ]
  45. },
  46. "dependencies": {
  47. "System.Linq.Expressions": "4.0.11-rc2-24027",
  48. "System.Linq.Queryable": "4.0.1-rc2-24027"
  49. }
  50. },
  51. "sl5": {
  52. "buildOptions": {
  53. "define": [
  54. "NO_SERIALIZABLE",
  55. "NO_TPL",
  56. "NO_REMOTING",
  57. "NO_SEMAPHORE",
  58. "NO_RXINTERFACES",
  59. "SILVERLIGHT",
  60. "SILVERLIGHT5"
  61. ]
  62. },
  63. "dependencies": {
  64. }
  65. }
  66. }
  67. }