Skip to content

Commit 7a45f8f

Browse files
committed
Add icon
1 parent 77f695b commit 7a45f8f

File tree

2 files changed

+45
-44
lines changed

2 files changed

+45
-44
lines changed

Assets/icon.png

7.95 KB
Loading

BencodeNET/project.json

Lines changed: 45 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,53 @@
11
{
2-
"$schema": "http://json.schemastore.org/project",
3-
"version": "2.2.2-*",
4-
"title": "BencodeNET",
5-
"authors": [ "Søren Kruse" ],
6-
"description": "A library for encoding and decoding bencode (e.g. torrent files)",
7-
"packOptions": {
8-
"releaseNotes": "Now uses the encoding information of a .torrent when parsing the torrent data.",
9-
"projectUrl": "https://github.com/Krusen/BencodeNET",
10-
"licenseUrl": "https://github.com/Krusen/BencodeNET/blob/master/LICENSE.md",
11-
"requireLicenseAcceptance": false,
12-
"tags": [
13-
"bencode",
14-
"torrent",
15-
"torrents"
16-
],
17-
"repository": {
18-
"type": "git",
19-
"url": "https://github.com/Krusen/BencodeNET"
2+
"$schema": "http://json.schemastore.org/project",
3+
"version": "2.2.2-*",
4+
"title": "BencodeNET",
5+
"authors": [ "Søren Kruse" ],
6+
"description": "A library for encoding and decoding bencode (e.g. torrent files)",
7+
"packOptions": {
8+
"releaseNotes": "Now uses the encoding information of a .torrent when parsing the torrent data.",
9+
"projectUrl": "https://github.com/Krusen/BencodeNET",
10+
"licenseUrl": "https://github.com/Krusen/BencodeNET/blob/master/LICENSE.md",
11+
"iconUrl": "https://raw.githubusercontent.com/Krusen/BencodeNET/master/Assets/icon.png",
12+
"requireLicenseAcceptance": false,
13+
"tags": [
14+
"bencode",
15+
"torrent",
16+
"torrents"
17+
],
18+
"repository": {
19+
"type": "git",
20+
"url": "https://github.com/Krusen/BencodeNET"
21+
},
22+
"files": {
23+
"include": "BencodeNET/bin/Release/BencodeNET.*"
24+
}
2025
},
21-
"files": {
22-
"include": "BencodeNET/bin/Release/BencodeNET.*"
23-
}
24-
},
25-
26-
"scripts": {
27-
"postcompile": "dotnet pack --no-build --configuration %compile:Configuration%"
28-
},
2926

30-
"buildOptions": {
31-
"xmlDoc": true
32-
},
27+
"scripts": {
28+
"postcompile": "dotnet pack --no-build --configuration %compile:Configuration%"
29+
},
3330

34-
"frameworks": {
35-
"net45": {
36-
"buildOptions": {
37-
"define": [ "NET45" ]
38-
}
31+
"buildOptions": {
32+
"xmlDoc": true
3933
},
40-
"netstandard1.3": {
41-
"buildOptions": {
42-
"define": [ "NETSTANDARD" ]
43-
},
44-
"dependencies": {
45-
"NETStandard.Library": "1.6.0",
46-
"System.Reflection": "4.1.0",
47-
"System.Security.Cryptography.Algorithms": "4.2.0"
48-
}
34+
35+
"frameworks": {
36+
"net45": {
37+
"buildOptions": {
38+
"define": [ "NET45" ]
39+
}
40+
},
41+
"netstandard1.3": {
42+
"buildOptions": {
43+
"define": [ "NETSTANDARD" ]
44+
},
45+
"dependencies": {
46+
"NETStandard.Library": "1.6.0",
47+
"System.Reflection": "4.1.0",
48+
"System.Security.Cryptography.Algorithms": "4.2.0"
49+
}
50+
}
4951
}
50-
}
5152

5253
}

0 commit comments

Comments
 (0)