-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathUTF-unknown.csproj
80 lines (65 loc) · 2.84 KB
/
UTF-unknown.csproj
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net40;netstandard1.0;netstandard1.3;netstandard2.0;netcoreapp3.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<AssemblyName>UtfUnknown</AssemblyName>
<PackageId>UTF.Unknown</PackageId>
<Version>2.0.0</Version>
<!-- patched in AppVeyor.yml -->
<DebugType Condition=" '$(Configuration)' == 'Debug' ">Full</DebugType>
</PropertyGroup>
<PropertyGroup>
<OutputType>Library</OutputType>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' Or '$(TargetFramework)' == 'netstandard2.0' ">
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.7.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
<PropertyGroup>
<Authors>Julian Verdurmen, Rustam Sayfutdinov, Rudi Pettazzi, Shy Shalom</Authors>
<NeutralLanguage>en-US</NeutralLanguage>
<AssemblyTitle>UTF Unknown</AssemblyTitle>
<Description>Detect character set for files, streams and other bytes.
This package is based on Ude and since version 2 also on uchardet, which are ports of the Mozilla Universal Charset Detector.
Features:
- Easy to use API
- Supports frameworks:
- .NET 5+
- .NET Standard 1.0+
- .NET Core 3.0+
- .NET Framework 4.0+
- Strong named
- XML documentation included
Compared to Ude:
- Refactor of API, namespaces and deadcode removal
- Added some docs
- Improve error handling
- Improved unit tests
</Description>
<Copyright />
</PropertyGroup>
<PropertyGroup>
<PackageTags>charset;detection;unicode;ascii;netstandard;chardet</PackageTags>
<PackageReleaseNotes>
- See https://github.com/CharsetDetector/UTF-unknown/releases
</PackageReleaseNotes>
<PackageIconUrl>https://raw.githubusercontent.com/CharsetDetector/UTF-unknown/master/logo.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/CharsetDetector/UTF-unknown</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/CharsetDetector/UTF-unknown/blob/master/license/MPL-1.1.txt</PackageLicenseUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/CharsetDetector/UTF-unknown</RepositoryUrl>
<RootNamespace>UtfUnknown</RootNamespace>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>UtfUnknown.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\UtfUnknown.xml</DocumentationFile>
<NoWarn>1701;1702;1705,1570,1591</NoWarn>
<AssemblyVersion>2.0.0.0</AssemblyVersion>
<FileVersion>2.0.0.0</FileVersion>
</PropertyGroup>
</Project>