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 820 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "version": "1.0.0-*",
  3. "description": "An optional UDP client provider for Discord.Net using System.Net.UdpClient.",
  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. "configurations": {
  15. "Release": {
  16. "buildOptions": {
  17. "define": [ "RELEASE" ],
  18. "nowarn": [ "CS1573", "CS1591" ],
  19. "optimize": true,
  20. "warningsAsErrors": true,
  21. "xmlDoc": true
  22. }
  23. }
  24. },
  25. "dependencies": {
  26. "Discord.Net.Core": {
  27. "target": "project"
  28. }
  29. },
  30. "frameworks": {
  31. "net45": {}
  32. }
  33. }