This repository has been archived by the owner on Feb 19, 2021. It is now read-only.
forked from errepi/ude
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Ude.nuspec
41 lines (41 loc) · 1.58 KB
/
Ude.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Ude</id>
<title>Ude</title>
<version>$version$</version>
<authors>Rudi Pettazzi</authors>
<owners>Rudi Pettazzi</owners>
<projectUrl>https://github.com/errepi/ude</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>Ude is a C# port of Mozilla Universal Charset Detector.</summary>
<description>Ude can recognize the following charsets:
- UTF-8
- UTF-16 (BE and LE)
- UTF-32 (BE and LE)
- windows-1252 (mostly equivalent to iso8859-1)
- windows-1251 and ISO-8859-5 (cyrillic)
- windows-1253 and ISO-8859-7 (greek)
- windows-1255 (logical hebrew. Includes ISO-8859-8-I and most of x-mac-hebrew)
- ISO-8859-8 (visual hebrew)
- Big-5
- gb18030 (superset of gb2312)
- HZ-GB-2312
- Shift-JIS
- EUC-KR, EUC-JP, EUC-TW
- ISO-2022-JP, ISO-2022-KR, ISO-2022-CN
- KOI8-R
- x-mac-cyrillic
- IBM855 and IBM866
- X-ISO-10646-UCS-4-3412 and X-ISO-10646-UCS-4-2413 (unusual BOM)
- ASCII</description>
<language>en-US</language>
<tags>charset encoding utf-8 utf ascii windows-1252 ISO-8859</tags>
</metadata>
<files>
<file src="src\Library\bin\$configuration$\Ude.dll" target="lib\net46" />
<file src="src\Library\bin\$configuration$\Ude.pdb" target="lib\net46" />
<file src="src\NetStandard\bin\$configuration$\Ude.NetStandard.dll" target="lib\netstandard1.0\Ude.NetStandard.dll" />
<file src="src\NetStandard\bin\$configuration$\Ude.NetStandard.pdb" target="lib\netstandard1.0\Ude.NetStandard.pdb" />
</files>
</package>