Browse Source

Removed project.jsons

tags/1.0-rc
RogueException 8 years ago
parent
commit
00bb3c9d70
8 changed files with 0 additions and 340 deletions
  1. +0
    -38
      src/Discord.Net.Commands/project.json
  2. +0
    -42
      src/Discord.Net.Core/project.json
  3. +0
    -37
      src/Discord.Net.Providers.UDPClient/project.json
  4. +0
    -38
      src/Discord.Net.Providers.WS4Net/project.json
  5. +0
    -42
      src/Discord.Net.Rest/project.json
  6. +0
    -52
      src/Discord.Net.Rpc/project.json
  7. +0
    -53
      src/Discord.Net.WebSocket/project.json
  8. +0
    -38
      src/Discord.Net/project.json

+ 0
- 38
src/Discord.Net.Commands/project.json View File

@@ -1,38 +0,0 @@
{
"version": "1.0.0-*",
"description": "A Discord.Net extension adding support for bot commands.",
"authors": [ "RogueException" ],

"packOptions": {
"tags": [ "discord", "discordapp" ],
"licenseUrl": "http://opensource.org/licenses/MIT",
"projectUrl": "https://github.com/RogueException/Discord.Net",
"repository": {
"type": "git",
"url": "git://github.com/RogueException/Discord.Net"
}
},

"configurations": {
"Release": {
"buildOptions": {
"define": [ "RELEASE" ],
"nowarn": [ "CS1573", "CS1591" ],
"optimize": true,
"warningsAsErrors": true,
"xmlDoc": true
}
}
},

"dependencies": {
"Discord.Net.Core": {
"target": "project"
}
},

"frameworks": {
"netstandard1.1": {},
"netstandard1.3": {}
}
}

+ 0
- 42
src/Discord.Net.Core/project.json View File

@@ -1,42 +0,0 @@
{
"version": "1.0.0-*",
"description": "A .Net API wrapper and bot framework for Discord.",
"authors": [ "RogueException" ],

"packOptions": {
"tags": [ "discord", "discordapp" ],
"licenseUrl": "http://opensource.org/licenses/MIT",
"projectUrl": "https://github.com/RogueException/Discord.Net",
"repository": {
"type": "git",
"url": "git://github.com/RogueException/Discord.Net"
}
},

"configurations": {
"Release": {
"buildOptions": {
"define": [ "RELEASE" ],
"nowarn": [ "CS1573", "CS1591" ],
"optimize": true,
"warningsAsErrors": true,
"xmlDoc": true
}
}
},

"dependencies": {
"Newtonsoft.Json": "9.0.1",
"System.Collections.Concurrent": "4.3.0",
"System.Collections.Immutable": "1.3.0",
"System.Interactive.Async": "3.1.0",
"System.Net.Http": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Serialization.Primitives": "4.1.1"
},

"frameworks": {
"netstandard1.1": {},
"netstandard1.3": {}
}
}

+ 0
- 37
src/Discord.Net.Providers.UDPClient/project.json View File

@@ -1,37 +0,0 @@
{
"version": "1.0.0-*",
"description": "An optional UDP client provider for Discord.Net using System.Net.UdpClient.",
"authors": [ "RogueException" ],

"packOptions": {
"tags": [ "discord", "discordapp" ],
"licenseUrl": "http://opensource.org/licenses/MIT",
"projectUrl": "https://github.com/RogueException/Discord.Net",
"repository": {
"type": "git",
"url": "git://github.com/RogueException/Discord.Net"
}
},

"configurations": {
"Release": {
"buildOptions": {
"define": [ "RELEASE" ],
"nowarn": [ "CS1573", "CS1591" ],
"optimize": true,
"warningsAsErrors": true,
"xmlDoc": true
}
}
},

"dependencies": {
"Discord.Net.Core": {
"target": "project"
}
},

"frameworks": {
"net45": {}
}
}

+ 0
- 38
src/Discord.Net.Providers.WS4Net/project.json View File

@@ -1,38 +0,0 @@
{
"version": "1.0.0-*",
"description": "An optional WebSocket client provider for Discord.Net using WebSocket4Net.",
"authors": [ "RogueException", "foxbot" ],

"packOptions": {
"tags": [ "discord", "discordapp" ],
"licenseUrl": "http://opensource.org/licenses/MIT",
"projectUrl": "https://github.com/RogueException/Discord.Net",
"repository": {
"type": "git",
"url": "git://github.com/RogueException/Discord.Net"
}
},

"configurations": {
"Release": {
"buildOptions": {
"define": [ "RELEASE" ],
"nowarn": [ "CS1573", "CS1591" ],
"optimize": true,
"warningsAsErrors": true,
"xmlDoc": true
}
}
},

"dependencies": {
"Discord.Net.Core": {
"target": "project"
},
"WebSocket4Net": "0.14.1"
},

"frameworks": {
"net45": {}
}
}

+ 0
- 42
src/Discord.Net.Rest/project.json View File

@@ -1,42 +0,0 @@
{
"version": "1.0.0-*",
"description": "A core Discord.Net library containing the REST client and models.",
"authors": [ "RogueException" ],

"packOptions": {
"tags": [ "discord", "discordapp" ],
"licenseUrl": "http://opensource.org/licenses/MIT",
"projectUrl": "https://github.com/RogueException/Discord.Net",
"repository": {
"type": "git",
"url": "git://github.com/RogueException/Discord.Net"
}
},

"configurations": {
"Release": {
"buildOptions": {
"define": [ "RELEASE" ],
"nowarn": [ "CS1573", "CS1591" ],
"optimize": true,
"warningsAsErrors": true,
"xmlDoc": true
}
}
},

"dependencies": {
"Discord.Net.Core": {
"target": "project"
},
},

"frameworks": {
"netstandard1.1": {},
"netstandard1.3": {
"dependencies": {
"System.IO.FileSystem": "4.3.0"
}
}
}
}

+ 0
- 52
src/Discord.Net.Rpc/project.json View File

@@ -1,52 +0,0 @@
{
"version": "1.0.0-*",
"description": "A core Discord.Net library containing the RPC client and models.",
"authors": [ "RogueException" ],

"buildOptions": {
"compile": {
"includeFiles": [ "../Discord.Net.WebSocket/Net/DefaultWebSocketClient.cs" ]
}
},

"packOptions": {
"tags": [ "discord", "discordapp" ],
"licenseUrl": "http://opensource.org/licenses/MIT",
"projectUrl": "https://github.com/RogueException/Discord.Net",
"repository": {
"type": "git",
"url": "git://github.com/RogueException/Discord.Net"
}
},

"configurations": {
"Release": {
"buildOptions": {
"define": [ "RELEASE" ],
"nowarn": [ "CS1573", "CS1591" ],
"optimize": true,
"warningsAsErrors": true,
"xmlDoc": true
}
}
},

"dependencies": {
"Discord.Net.Core": {
"target": "project"
},
"Discord.Net.Rest": {
"target": "project"
},
"System.IO.Compression": "4.3.0"
},

"frameworks": {
"netstandard1.1": {},
"netstandard1.3": {
"dependencies": {
"System.Net.WebSockets.Client": "4.3.0"
}
}
}
}

+ 0
- 53
src/Discord.Net.WebSocket/project.json View File

@@ -1,53 +0,0 @@
{
"version": "1.0.0-*",
"description": "A core Discord.Net library containing the WebSocket client and models.",
"authors": [ "RogueException" ],

"packOptions": {
"tags": [ "discord", "discordapp" ],
"licenseUrl": "http://opensource.org/licenses/MIT",
"projectUrl": "https://github.com/RogueException/Discord.Net",
"repository": {
"type": "git",
"url": "git://github.com/RogueException/Discord.Net"
}
},

"buildOptions": {
"allowUnsafe": true
},

"configurations": {
"Release": {
"buildOptions": {
"define": [ "RELEASE" ],
"nowarn": [ "CS1573", "CS1591" ],
"optimize": true,
"warningsAsErrors": true,
"xmlDoc": true
}
}
},

"dependencies": {
"Discord.Net.Core": {
"target": "project"
},
"Discord.Net.Rest": {
"target": "project"
},
"System.IO.Compression": "4.3.0",
"System.Runtime.InteropServices": "4.3.0"
},

"frameworks": {
"netstandard1.1": {},
"netstandard1.3": {
"dependencies": {
"System.Net.NameResolution": "4.3.0",
"System.Net.Sockets": "4.3.0",
"System.Net.WebSockets.Client": "4.3.0"
}
}
}
}

+ 0
- 38
src/Discord.Net/project.json View File

@@ -1,38 +0,0 @@
{
"version": "1.0.0-*",
"description": "An aynchronous API wrapper for Discord. This metapackage includes all of the optional Discord.Net components.",
"authors": [ "RogueException" ],

"packOptions": {
"tags": [ "discord", "discordapp" ],
"licenseUrl": "http://opensource.org/licenses/MIT",
"projectUrl": "https://github.com/RogueException/Discord.Net",
"repository": {
"type": "git",
"url": "git://github.com/RogueException/Discord.Net"
}
},

"dependencies": {
"Discord.Net.Core": {
"target": "project"
},
"Discord.Net.Rest": {
"target": "project"
},
"Discord.Net.WebSocket": {
"target": "project"
},
"Discord.Net.Rpc": {
"target": "project"
},
"Discord.Net.Commands": {
"target": "project"
}
},

"frameworks": {
"netstandard1.1": {},
"netstandard1.3": {}
}
}

Loading…
Cancel
Save