project.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. "embed": {
  20. "includeFiles": "Properties/System.Interactive.rd.xml"
  21. }
  22. },
  23. "frameworks": {
  24. "net40": {
  25. "buildOptions": {
  26. "define": [
  27. "HAS_APTCA",
  28. "DESKTOPCLR",
  29. "DESKTOPCLR40"
  30. ]
  31. }
  32. },
  33. "net45": {
  34. "buildOptions": {
  35. "define": [
  36. "HAS_AWAIT",
  37. "HAS_APTCA",
  38. "DESKTOPCLR",
  39. "DESKTOPCLR45"
  40. ]
  41. }
  42. },
  43. "netstandard1.0": {
  44. "buildOptions": {
  45. "define": [
  46. "HAS_AWAIT",
  47. "CRIPPLED_REFLECTION",
  48. "PLIB"
  49. ]
  50. },
  51. "dependencies": {
  52. "NETStandard.Library": "1.5.0-rc2-24027"
  53. }
  54. }
  55. }
  56. }