project.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "version": "2.0.0-*",
  3. "title": "Interactive Extensions - Async Library",
  4. "description":
  5. "Interactive Extensions Async Library used to express queries over asynchronous enumerable sequences.",
  6. "authors": ["Microsoft"],
  7. "copyright": "Copyright (C) Microsoft Corporation",
  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. "frameworks": {
  14. "net40": {
  15. "compilationOptions": {
  16. "define": [
  17. "HAS_APTCA",
  18. "DESKTOPCLR",
  19. "DESKTOPCLR40"
  20. ]
  21. }
  22. },
  23. "net45": {
  24. "compilationOptions": {
  25. "define": [
  26. "HAS_AWAIT",
  27. "HAS_APTCA",
  28. "DESKTOPCLR",
  29. "DESKTOPCLR45"
  30. ]
  31. }
  32. },
  33. "netstandard1.0": {
  34. "compilationOptions": {
  35. "define": [
  36. "HAS_AWAIT",
  37. "CRIPPLED_REFLECTION",
  38. "PLIB"
  39. ]
  40. },
  41. "dependencies": {
  42. "System.Diagnostics.Debug": "4.0.11-rc2-23904",
  43. "System.Linq": "4.0.1-rc2-23904",
  44. "System.Runtime.Extensions": "4.1.0-rc2-23904",
  45. "System.Resources.ResourceManager": "4.0.1-rc2-23904",
  46. "System.Runtime": "4.1.0-rc2-23904",
  47. "System.Threading": "4.0.11-rc2-23904"
  48. }
  49. }
  50. }
  51. }