project.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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_APTCA",
  34. "NO_ARRAY_EMPTY",
  35. "DESKTOPCLR",
  36. "DESKTOPCLR45"
  37. ]
  38. }
  39. },
  40. "net46": {
  41. "buildOptions": {
  42. "define": [
  43. "HAS_APTCA",
  44. "DESKTOPCLR",
  45. "DESKTOPCLR46"
  46. ]
  47. }
  48. },
  49. "netstandard1.0": {
  50. "buildOptions": {
  51. "define": [
  52. "NO_ARRAY_EMPTY",
  53. "NO_CODE_COVERAGE_ATTRIBUTE",
  54. "CRIPPLED_REFLECTION",
  55. "PLIB"
  56. ]
  57. }
  58. },
  59. "netstandard1.3": {
  60. "buildOptions": {
  61. "define": [
  62. "CRIPPLED_REFLECTION",
  63. "NO_CODE_COVERAGE_ATTRIBUTE",
  64. "PLIB"
  65. ]
  66. }
  67. }
  68. }
  69. }