project.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "version": "3.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. "buildOptions": {
  15. "keyFile": "../35MSSharedLib1024.snk",
  16. "publicSign": true,
  17. "define": ["SIGNED"]
  18. },
  19. "configurations": {
  20. "ReleaseDelaySigned": {
  21. "buildOptions": {
  22. "publicSign": false,
  23. "delaySign": true,
  24. "define": ["RELEASE", "TRACE"],
  25. "optimize": true
  26. }
  27. }
  28. },
  29. "dependencies": {
  30. "System.Interactive": { "target": "project" }
  31. },
  32. "frameworks": {
  33. "net40": {
  34. "buildOptions": {
  35. "define": [
  36. "HAS_APTCA",
  37. "DESKTOPCLR",
  38. "DESKTOPCLR40"
  39. ]
  40. }
  41. },
  42. "net45": {
  43. "buildOptions": {
  44. "define": [
  45. "HAS_AWAIT",
  46. "HAS_APTCA",
  47. "DESKTOPCLR",
  48. "DESKTOPCLR45"
  49. ]
  50. }
  51. },
  52. "netstandard1.0": {
  53. "buildOptions": {
  54. "define": [
  55. "HAS_AWAIT",
  56. "CRIPPLED_REFLECTION",
  57. "PLIB"
  58. ]
  59. },
  60. "dependencies": {
  61. "System.Linq.Expressions": "4.0.11-rc2-24027",
  62. "System.Linq.Queryable": "4.0.1-rc2-24027"
  63. }
  64. },
  65. "sl5": {
  66. "buildOptions": {
  67. "define": [
  68. "NO_SERIALIZABLE",
  69. "NO_TPL",
  70. "NO_REMOTING",
  71. "NO_SEMAPHORE",
  72. "NO_RXINTERFACES",
  73. "SILVERLIGHT",
  74. "SILVERLIGHT5"
  75. ]
  76. },
  77. "dependencies": {
  78. }
  79. }
  80. }
  81. }