project.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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": "../ReactiveX.snk",
  16. "define": [ "SIGNED" ],
  17. "nowarn": [ "CS1591" ],
  18. "xmlDoc": true,
  19. "embed": {
  20. "includeFiles": "Properties/System.Interactive.Async.Providers.rd.xml"
  21. },
  22. "compile": {
  23. "includeFiles": [ "../GlobalAssemblyVersion.cs" ]
  24. }
  25. },
  26. "dependencies": {
  27. "System.Interactive.Async": { "target": "project" },
  28. "System.Linq.Queryable": "4.0.1"
  29. },
  30. "frameworks": {
  31. "net45": {
  32. "buildOptions": {
  33. "define": [
  34. "HAS_AWAIT",
  35. "HAS_APTCA",
  36. "DESKTOPCLR",
  37. "DESKTOPCLR45"
  38. ]
  39. }
  40. },
  41. "netstandard1.0": {
  42. "buildOptions": {
  43. "define": [
  44. "HAS_AWAIT",
  45. "CRIPPLED_REFLECTION",
  46. "PLIB"
  47. ]
  48. }
  49. }
  50. }
  51. }