project.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. "compile": {
  23. "includeFiles": [ "../GlobalAssemblyVersion.cs" ]
  24. }
  25. },
  26. "dependencies": {
  27. "NETStandard.Library": "1.6.0"
  28. },
  29. "frameworks": {
  30. "net45": {
  31. "buildOptions": {
  32. "define": [
  33. "HAS_AWAIT",
  34. "HAS_APTCA",
  35. "NO_ARRAY_EMPTY",
  36. "DESKTOPCLR",
  37. "DESKTOPCLR45"
  38. ]
  39. }
  40. },
  41. "net46": {
  42. "buildOptions": {
  43. "define": [
  44. "HAS_AWAIT",
  45. "HAS_APTCA",
  46. "DESKTOPCLR",
  47. "DESKTOPCLR46"
  48. ]
  49. }
  50. },
  51. "netstandard1.0": {
  52. "buildOptions": {
  53. "define": [
  54. "HAS_AWAIT",
  55. "NO_ARRAY_EMPTY",
  56. "CRIPPLED_REFLECTION",
  57. "PLIB"
  58. ]
  59. }
  60. },
  61. "netstandard1.3": {
  62. "buildOptions": {
  63. "define": [
  64. "HAS_AWAIT",
  65. "CRIPPLED_REFLECTION",
  66. "PLIB"
  67. ]
  68. }
  69. }
  70. }
  71. }