project.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "version": "3.0.0-*",
  3. "title": "Interactive Extensions - Tests",
  4. "description": "Interactive Extensions test project.",
  5. "authors": ["Microsoft"],
  6. "copyright": "Copyright (C) Microsoft Corporation",
  7. "packOptions": {
  8. "tags": [],
  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. "nowarn": ["CS0618"],
  16. "keyFile": "../35MSSharedLib1024.snk",
  17. "publicSign": true,
  18. "define": ["SIGNED"],
  19. "copyToOutput": {
  20. "include": [ "xunit.runner.json" ]
  21. },
  22. "exclude": [
  23. "App.cs"
  24. ]
  25. },
  26. "configurations": {
  27. "ReleaseDelaySigned": {
  28. "buildOptions": {
  29. "publicSign": false,
  30. "delaySign": true,
  31. "define": ["RELEASE", "TRACE"],
  32. "optimize": true
  33. }
  34. }
  35. },
  36. "dependencies": {
  37. "System.Interactive.Providers": { "target": "project" },
  38. "System.Interactive.Async.Providers": { "target": "project" },
  39. "xunit": "2.1.0",
  40. "dotnet-test-xunit": "1.0.0-rc2-*"
  41. },
  42. "testRunner": "xunit",
  43. "frameworks": {
  44. "netcoreapp1.0": {
  45. "imports": [ "dotnet", "dnxcore50", "portable-net45+win8" ],
  46. "buildOptions": {
  47. "define": [
  48. "HAS_AWAIT"
  49. ]
  50. },
  51. "dependencies": {
  52. "Microsoft.NETCore.App": {
  53. "version": "1.0.0-rc2-3002702",
  54. "type": "platform"
  55. }
  56. }
  57. },
  58. "net461": {
  59. "buildOptions": {
  60. "define": [
  61. "HAS_AWAIT"
  62. ]
  63. }
  64. }
  65. }
  66. }