1
0

project.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. },
  19. "configurations": {
  20. "ReleaseDelaySigned": {
  21. "buildOptions": {
  22. "publicSign": false,
  23. "delaySign": true,
  24. "define": ["RELEASE", "TRACE"],
  25. "optimize": true
  26. }
  27. }
  28. },
  29. "dependencies": {
  30. "System.Interactive.Async": { "target": "project" }
  31. },
  32. "frameworks": {
  33. "net40": {
  34. "buildOptions": {
  35. "define": [
  36. "HAS_APTCA",
  37. "DESKTOPCLR",
  38. "DESKTOPCLR40"
  39. ]
  40. }
  41. },
  42. "net45": {
  43. "buildOptions": {
  44. "define": [
  45. "HAS_AWAIT",
  46. "HAS_APTCA",
  47. "DESKTOPCLR",
  48. "DESKTOPCLR45"
  49. ]
  50. }
  51. },
  52. "netstandard1.0": {
  53. "buildOptions": {
  54. "define": [
  55. "HAS_AWAIT",
  56. "CRIPPLED_REFLECTION",
  57. "PLIB"
  58. ]
  59. },
  60. "dependencies": {
  61. "System.Linq.Expressions": "4.0.11-rc2-24027",
  62. "System.Linq.Queryable": "4.0.1-rc2-24027"
  63. }
  64. }
  65. }
  66. }