project.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "version": "2.0.0-*",
  3. "title": "Interactive Extensions - Providers Library",
  4. "description": "Interactive Extensions Providers Library used to build query providers and express queries over enumerable sequences.",
  5. "authors": ["Microsoft"],
  6. "copyright": "Copyright (C) Microsoft Corporation",
  7. "packOptions": {
  8. "tags": ["Ix", "Interactive", "Extensions", "Enumerable"],
  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": { "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. "sl5": {
  51. "buildOptions": {
  52. "define": [
  53. "NO_SERIALIZABLE",
  54. "NO_TPL",
  55. "NO_REMOTING",
  56. "NO_SEMAPHORE",
  57. "NO_RXINTERFACES",
  58. "SILVERLIGHT",
  59. "SILVERLIGHT5"
  60. ]
  61. },
  62. "dependencies": {
  63. }
  64. }
  65. }
  66. }