Skip to content

Commit

Permalink
Add icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Krusen committed Feb 7, 2017
1 parent 77f695b commit 7a45f8f
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 44 deletions.
Binary file added Assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
89 changes: 45 additions & 44 deletions BencodeNET/project.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
}
}

}

0 comments on commit 7a45f8f

Please sign in to comment.