diff --git a/Assets/icon.png b/Assets/icon.png new file mode 100644 index 0000000000..633ac45250 Binary files /dev/null and b/Assets/icon.png differ diff --git a/BencodeNET/project.json b/BencodeNET/project.json index 214eed3ef9..3d553275b9 100644 --- a/BencodeNET/project.json +++ b/BencodeNET/project.json @@ -1,52 +1,53 @@ { - "$schema": "http://json.schemastore.org/project", - "version": "2.2.2-*", - "title": "BencodeNET", - "authors": [ "Søren Kruse" ], - "description": "A library for encoding and decoding bencode (e.g. torrent files)", - "packOptions": { - "releaseNotes": "Now uses the encoding information of a .torrent when parsing the torrent data.", - "projectUrl": "https://github.com/Krusen/BencodeNET", - "licenseUrl": "https://github.com/Krusen/BencodeNET/blob/master/LICENSE.md", - "requireLicenseAcceptance": false, - "tags": [ - "bencode", - "torrent", - "torrents" - ], - "repository": { - "type": "git", - "url": "https://github.com/Krusen/BencodeNET" + "$schema": "http://json.schemastore.org/project", + "version": "2.2.2-*", + "title": "BencodeNET", + "authors": [ "Søren Kruse" ], + "description": "A library for encoding and decoding bencode (e.g. torrent files)", + "packOptions": { + "releaseNotes": "Now uses the encoding information of a .torrent when parsing the torrent data.", + "projectUrl": "https://github.com/Krusen/BencodeNET", + "licenseUrl": "https://github.com/Krusen/BencodeNET/blob/master/LICENSE.md", + "iconUrl": "https://raw.githubusercontent.com/Krusen/BencodeNET/master/Assets/icon.png", + "requireLicenseAcceptance": false, + "tags": [ + "bencode", + "torrent", + "torrents" + ], + "repository": { + "type": "git", + "url": "https://github.com/Krusen/BencodeNET" + }, + "files": { + "include": "BencodeNET/bin/Release/BencodeNET.*" + } }, - "files": { - "include": "BencodeNET/bin/Release/BencodeNET.*" - } - }, - - "scripts": { - "postcompile": "dotnet pack --no-build --configuration %compile:Configuration%" - }, - "buildOptions": { - "xmlDoc": true - }, + "scripts": { + "postcompile": "dotnet pack --no-build --configuration %compile:Configuration%" + }, - "frameworks": { - "net45": { - "buildOptions": { - "define": [ "NET45" ] - } + "buildOptions": { + "xmlDoc": true }, - "netstandard1.3": { - "buildOptions": { - "define": [ "NETSTANDARD" ] - }, - "dependencies": { - "NETStandard.Library": "1.6.0", - "System.Reflection": "4.1.0", - "System.Security.Cryptography.Algorithms": "4.2.0" - } + + "frameworks": { + "net45": { + "buildOptions": { + "define": [ "NET45" ] + } + }, + "netstandard1.3": { + "buildOptions": { + "define": [ "NETSTANDARD" ] + }, + "dependencies": { + "NETStandard.Library": "1.6.0", + "System.Reflection": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0" + } + } } - } }