You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

project.json 925 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "version": "1.0.0-beta-*",
  3. "description": "A Discord.Net extension adding command support.",
  4. "authors": [ "RogueException" ],
  5. "packOptions": {
  6. "tags": [ "discord", "discordapp" ],
  7. "licenseUrl": "http://opensource.org/licenses/MIT",
  8. "projectUrl": "https://github.com/RogueException/Discord.Net",
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/RogueException/Discord.Net"
  12. }
  13. },
  14. "buildOptions": {
  15. "allowUnsafe": true,
  16. "warningsAsErrors": false,
  17. "xmlDoc": true
  18. },
  19. "configurations": {
  20. "Release": {
  21. "buildOptions": {
  22. "define": [ "RELEASE" ],
  23. "nowarn": [ "CS1573", "CS1591" ],
  24. "optimize": true
  25. }
  26. }
  27. },
  28. "dependencies": {
  29. "Discord.Net": "1.0.0-*"
  30. },
  31. "frameworks": {
  32. "netstandard1.3": {
  33. "imports": [
  34. "dotnet5.4",
  35. "dnxcore50",
  36. "portable-net45+win8"
  37. ]
  38. }
  39. }
  40. }