project.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. "tags": [ "Ix", "Interactive", "Extensions", "Enumerable" ],
  8. "iconUrl": "http://go.microsoft.com/fwlink/?LinkId=261274",
  9. "projectUrl": "https://github.com/Reactive-Extensions/Rx.NET",
  10. "licenseUrl": "https://raw.githubusercontent.com/Reactive-Extensions/Rx.NET/master/Ix.NET/Source/license.txt",
  11. "requireLicenseAcceptance": true,
  12. "frameworks": {
  13. "net40": {
  14. "compilationOptions": {
  15. "define": [
  16. "HAS_APTCA",
  17. "DESKTOPCLR",
  18. "DESKTOPCLR40"
  19. ]
  20. }
  21. },
  22. "net45": {
  23. "compilationOptions": {
  24. "define": [
  25. "HAS_AWAIT",
  26. "HAS_APTCA",
  27. "DESKTOPCLR",
  28. "DESKTOPCLR45"
  29. ]
  30. }
  31. },
  32. "netstandard1.0": {
  33. "compilationOptions": {
  34. "define": [
  35. "HAS_AWAIT",
  36. "CRIPPLED_REFLECTION",
  37. "PLIB"
  38. ]
  39. },
  40. "dependencies": {
  41. "System.Diagnostics.Debug": "4.0.11-rc2-23904",
  42. "System.Linq": "4.0.1-rc2-23904",
  43. "System.Resources.ResourceManager": "4.0.1-rc2-23904",
  44. "System.Runtime": "4.1.0-rc2-23904",
  45. "System.Threading": "4.0.11-rc2-23904"
  46. }
  47. }
  48. }
  49. }