project.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "version": "2.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. "frameworks": {
  15. "net40": {
  16. "buildOptions": {
  17. "define": [
  18. "HAS_APTCA",
  19. "DESKTOPCLR",
  20. "DESKTOPCLR40"
  21. ]
  22. }
  23. },
  24. "net45": {
  25. "buildOptions": {
  26. "define": [
  27. "HAS_AWAIT",
  28. "HAS_APTCA",
  29. "DESKTOPCLR",
  30. "DESKTOPCLR45"
  31. ]
  32. }
  33. },
  34. "netstandard1.0": {
  35. "buildOptions": {
  36. "define": [
  37. "HAS_AWAIT",
  38. "CRIPPLED_REFLECTION",
  39. "PLIB"
  40. ]
  41. },
  42. "dependencies": {
  43. "NETStandard.Library": "1.5.0-rc2-24027"
  44. }
  45. },
  46. "sl5": {
  47. "buildOptions": {
  48. "define": [
  49. "NO_SERIALIZABLE",
  50. "NO_TPL",
  51. "NO_REMOTING",
  52. "NO_SEMAPHORE",
  53. "NO_RXINTERFACES",
  54. "SILVERLIGHT",
  55. "SILVERLIGHT5"
  56. ]
  57. },
  58. "dependencies": {
  59. "Microsoft.TargetingPack.Private.Silverlight.v5": "1.0.2"
  60. }
  61. }
  62. }
  63. }