project.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. "nowarn": [ "CS1591" ],
  19. "xmlDoc": true,
  20. "embed": {
  21. "includeFiles": "Properties/System.Interactive.Async.rd.xml"
  22. }
  23. },
  24. "configurations": {
  25. "ReleaseDelaySigned": {
  26. "buildOptions": {
  27. "publicSign": false,
  28. "delaySign": true,
  29. "define": ["RELEASE", "TRACE"],
  30. "optimize": true
  31. }
  32. }
  33. },
  34. "frameworks": {
  35. "net40": {
  36. "buildOptions": {
  37. "define": [
  38. "HAS_APTCA",
  39. "DESKTOPCLR",
  40. "DESKTOPCLR40"
  41. ]
  42. }
  43. },
  44. "net45": {
  45. "buildOptions": {
  46. "define": [
  47. "HAS_AWAIT",
  48. "HAS_APTCA",
  49. "DESKTOPCLR",
  50. "DESKTOPCLR45"
  51. ]
  52. }
  53. },
  54. "netstandard1.0": {
  55. "buildOptions": {
  56. "define": [
  57. "HAS_AWAIT",
  58. "CRIPPLED_REFLECTION",
  59. "PLIB"
  60. ]
  61. },
  62. "dependencies": {
  63. "NETStandard.Library": "1.5.0-rc2-24027"
  64. }
  65. }
  66. }
  67. }