project.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Interactive Extensions - Main Library",
  4. "description": "Interactive Extensions Main Library used to 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.rd.xml"
  21. },
  22. "compile": {
  23. "includeFiles": [ "../GlobalAssemblyVersion.cs" ]
  24. }
  25. },
  26. "frameworks": {
  27. "net45": {
  28. "buildOptions": {
  29. "define": [
  30. "HAS_APTCA",
  31. "DESKTOPCLR",
  32. "DESKTOPCLR45"
  33. ]
  34. }
  35. },
  36. "netstandard1.0": {
  37. "buildOptions": {
  38. "define": [
  39. "CRIPPLED_REFLECTION",
  40. "PLIB"
  41. ]
  42. },
  43. "dependencies": {
  44. "NETStandard.Library": "1.6.0"
  45. }
  46. }
  47. }
  48. }