project.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Interactive Extensions - Main Library",
  4. "description": "Interactive Extensions Main Library used to 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. "nowarn": [ "CS1591" ],
  19. "xmlDoc": true
  20. },
  21. "configurations": {
  22. "ReleaseDelaySigned": {
  23. "buildOptions": {
  24. "xmlDocs": true,
  25. "publicSign": false,
  26. "delaySign": true,
  27. "define": ["RELEASE", "TRACE"],
  28. "optimize": true
  29. }
  30. }
  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. "NETStandard.Library": "1.5.0-rc2-24027"
  62. }
  63. },
  64. "sl5": {
  65. "buildOptions": {
  66. "define": [
  67. "NO_SERIALIZABLE",
  68. "NO_TPL",
  69. "NO_REMOTING",
  70. "NO_SEMAPHORE",
  71. "NO_RXINTERFACES",
  72. "SILVERLIGHT",
  73. "SILVERLIGHT5"
  74. ]
  75. },
  76. "dependencies": {
  77. "Microsoft.TargetingPack.Private.Silverlight.v5": {
  78. "version": "1.0.2",
  79. "type": "platform"
  80. }
  81. }
  82. }
  83. }
  84. }