project.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Interactive Extensions - Async Providers Library",
  4. "description": "Interactive Extensions Async Providers Library used to build query providers and express queries over async enumerable sequences.",
  5. "authors": ["Microsoft"],
  6. "copyright": "Copyright (C) Microsoft Corporation",
  7. "packOptions": {
  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. },
  14. "buildOptions": {
  15. "keyFile": "../35MSSharedLib1024.snk",
  16. "publicSign": true,
  17. "define": [ "SIGNED" ],
  18. "nowarn": [ "CS1591" ],
  19. "xmlDoc": true
  20. },
  21. "configurations": {
  22. "ReleaseDelaySigned": {
  23. "buildOptions": {
  24. "publicSign": false,
  25. "delaySign": true,
  26. "define": ["RELEASE", "TRACE"],
  27. "optimize": true
  28. }
  29. }
  30. },
  31. "dependencies": {
  32. "System.Interactive.Async": { "target": "project" }
  33. },
  34. "frameworks": {
  35. "net40": {
  36. "buildOptions": {
  37. "define": [
  38. "HAS_APTCA",
  39. "DESKTOPCLR",
  40. "DESKTOPCLR40"
  41. ]
  42. }
  43. },
  44. "net45": {
  45. "buildOptions": {
  46. "define": [
  47. "HAS_AWAIT",
  48. "HAS_APTCA",
  49. "DESKTOPCLR",
  50. "DESKTOPCLR45"
  51. ]
  52. }
  53. },
  54. "netstandard1.0": {
  55. "buildOptions": {
  56. "define": [
  57. "HAS_AWAIT",
  58. "CRIPPLED_REFLECTION",
  59. "PLIB"
  60. ]
  61. },
  62. "dependencies": {
  63. "System.Linq.Expressions": "4.0.11-rc2-24027",
  64. "System.Linq.Queryable": "4.0.1-rc2-24027"
  65. }
  66. }
  67. }
  68. }