project.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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": "../ReactiveX.snk",
  16. "define": [ "SIGNED" ],
  17. "nowarn": [ "CS1591" ],
  18. "xmlDoc": true,
  19. "embed": {
  20. "includeFiles": "Properties/System.Interactive.Async.rd.xml"
  21. }
  22. },
  23. "dependencies": {
  24. "NETStandard.Library": "1.6.0"
  25. },
  26. "frameworks": {
  27. "net45": {
  28. "buildOptions": {
  29. "define": [
  30. "HAS_AWAIT",
  31. "HAS_APTCA",
  32. "NO_ARRAY_EMPTY",
  33. "DESKTOPCLR",
  34. "DESKTOPCLR45"
  35. ]
  36. }
  37. },
  38. "net46": {
  39. "buildOptions": {
  40. "define": [
  41. "HAS_AWAIT",
  42. "HAS_APTCA",
  43. "DESKTOPCLR",
  44. "DESKTOPCLR46"
  45. ]
  46. }
  47. },
  48. "netstandard1.0": {
  49. "buildOptions": {
  50. "define": [
  51. "HAS_AWAIT",
  52. "NO_ARRAY_EMPTY",
  53. "CRIPPLED_REFLECTION",
  54. "PLIB"
  55. ]
  56. }
  57. },
  58. "netstandard1.3": {
  59. "buildOptions": {
  60. "define": [
  61. "HAS_AWAIT",
  62. "CRIPPLED_REFLECTION",
  63. "PLIB"
  64. ]
  65. }
  66. }
  67. }
  68. }