project.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Interactive Extensions - Main Library",
  4. "description": "Interactive Extensions Main Library used to express queries over enumerable sequences.",
  5. "authors": ["Microsoft"],
  6. "copyright": "Copyright (C) Microsoft Corporation",
  7. "packOptions": {
  8. "tags": ["Ix", "Interactive", "Extensions", "Enumerable"],
  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. },
  20. "frameworks": {
  21. "net40": {
  22. "buildOptions": {
  23. "define": [
  24. "HAS_APTCA",
  25. "DESKTOPCLR",
  26. "DESKTOPCLR40"
  27. ]
  28. }
  29. },
  30. "net45": {
  31. "buildOptions": {
  32. "define": [
  33. "HAS_AWAIT",
  34. "HAS_APTCA",
  35. "DESKTOPCLR",
  36. "DESKTOPCLR45"
  37. ]
  38. }
  39. },
  40. "netstandard1.0": {
  41. "buildOptions": {
  42. "define": [
  43. "HAS_AWAIT",
  44. "CRIPPLED_REFLECTION",
  45. "PLIB"
  46. ]
  47. },
  48. "dependencies": {
  49. "NETStandard.Library": "1.5.0-rc2-24027"
  50. }
  51. }
  52. }
  53. }