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