project.json 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Interactive Extensions - Async Library",
  4. "description": "Interactive Extensions Async Library used to express queries over asynchronous enumerable sequences.",
  5. "authors": ["Microsoft"],
  6. "copyright": "Copyright (C) Microsoft Corporation",
  7. "packOptions": {
  8. "tags": ["Ix", "Interactive", "Extensions", "Enumerable", "Asynchronous"],
  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. "frameworks": {
  30. "net40": {
  31. "buildOptions": {
  32. "define": [
  33. "HAS_APTCA",
  34. "DESKTOPCLR",
  35. "DESKTOPCLR40"
  36. ]
  37. }
  38. },
  39. "net45": {
  40. "buildOptions": {
  41. "define": [
  42. "HAS_AWAIT",
  43. "HAS_APTCA",
  44. "DESKTOPCLR",
  45. "DESKTOPCLR45"
  46. ]
  47. }
  48. },
  49. "netstandard1.0": {
  50. "buildOptions": {
  51. "define": [
  52. "HAS_AWAIT",
  53. "CRIPPLED_REFLECTION",
  54. "PLIB"
  55. ]
  56. },
  57. "dependencies": {
  58. "NETStandard.Library": "1.5.0-rc2-24027"
  59. }
  60. },
  61. "sl5": {
  62. "buildOptions": {
  63. "define": [
  64. "NO_SERIALIZABLE",
  65. "NO_TPL",
  66. "NO_REMOTING",
  67. "NO_SEMAPHORE",
  68. "NO_RXINTERFACES",
  69. "SILVERLIGHT",
  70. "SILVERLIGHT5"
  71. ]
  72. },
  73. "dependencies": {
  74. "Microsoft.TargetingPack.Private.Silverlight.v5": {
  75. "version": "1.0.2",
  76. "type": "platform"
  77. }
  78. }
  79. }
  80. }
  81. }