project.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Interactive Extensions - Providers Library",
  4. "description": "Interactive Extensions Providers Library used to build query providers and 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.Providers.rd.xml"
  21. }
  22. },
  23. "dependencies": {
  24. "System.Interactive": { "target": "project" }
  25. },
  26. "frameworks": {
  27. "net40": {
  28. "buildOptions": {
  29. "define": [
  30. "HAS_APTCA",
  31. "DESKTOPCLR",
  32. "DESKTOPCLR40"
  33. ]
  34. }
  35. },
  36. "net45": {
  37. "buildOptions": {
  38. "define": [
  39. "HAS_AWAIT",
  40. "HAS_APTCA",
  41. "DESKTOPCLR",
  42. "DESKTOPCLR45"
  43. ]
  44. }
  45. },
  46. "netstandard1.0": {
  47. "buildOptions": {
  48. "define": [
  49. "HAS_AWAIT",
  50. "CRIPPLED_REFLECTION",
  51. "PLIB"
  52. ]
  53. },
  54. "dependencies": {
  55. "System.Linq.Expressions": "4.0.11-rc2-24027",
  56. "System.Linq.Queryable": "4.0.1-rc2-24027"
  57. }
  58. }
  59. }
  60. }