icu.net
2.9.0
See the version list below for details.
dotnet add package icu.net --version 2.9.0
NuGet\Install-Package icu.net -Version 2.9.0
<PackageReference Include="icu.net" Version="2.9.0" />
paket add icu.net --version 2.9.0
#r "nuget: icu.net, 2.9.0"
// Install icu.net as a Cake Addin #addin nuget:?package=icu.net&version=2.9.0 // Install icu.net as a Cake Tool #tool nuget:?package=icu.net&version=2.9.0
icu.net
Overview
icu-dotnet is the C# wrapper for a subset of ICU.
ICU is a mature, widely used set of C/C++ and Java libraries providing Unicode and Globalization support for software applications. ICU is widely portable and gives applications the same results on all platforms and between C/C++ and Java software.
Usage
This library provides .NET classes and methods for (a subset of) the ICU C API. Please refer to the ICU API documentation. In icu.net you'll find classes that correspond to the C++ classes of ICU4C.
Although not strictly required it is recommended to call Icu.Wrapper.Init()
at the start of
the application. This will allow to use icu.net from multiple threads
(c.f. ICU Initialization and Termination).
Similarly, it might be beneficial to call Icu.Wrapper.Cleanup()
before exiting.
Sample code:
static class Program
{
public static void Main(string[] args)
{
Icu.Wrapper.Init();
// Will output "NFC form of XA\u0308bc is XÄbc"
Console.WriteLine($"NFC form of XA\\u0308bc is {Icu.Normalizer.Normalize("XA\u0308bc",
Icu.Normalizer.UNormalizationMode.UNORM_NFC)}");
Icu.Wrapper.Cleanup();
}
}
Building
To build the current version of icu-dotnet you'll need .net 6.0 installed.
icu-dotnet can be built from the command line as well as Visual Studio or JetBrains Rider.
Windows and Linux
You can build and run the unit tests by running:
dotnet test source/icu.net.sln
Docker
icu-dotnet depends on libc dynamic libraries at run time. If running within Docker, you may need to install them, for example:
FROM mcr.microsoft.com/dotnet/aspnet:3.1
# Install system dependencies.
RUN apt-get update \
&& apt-get install -y \
# icu.net dependency: libdl.so
libc6-dev \
&& rm -rf /var/lib/apt/lists/*
...
ICU versions
Linux
icu-dotnet links with any installed version of ICU shared objects. It is recommended to install the version provided by the distribution. As of 2016, Ubuntu Trusty uses version ICU 52 and Ubuntu Xenial 55.
Windows
Rather than using the full version of ICU (which can be ~25 MB), a custom minimum build can be used. It can be installed by the Icu4c.Win.Min nuget package. The full version of ICU is also available as Icu4c.Win.Full.Lib and Icu4c.Win.Full.Bin.
What's in the minimum build
- Characters
- ErrorCodes
- Locale
- Normalizer
- Rules-based Collator
- Unicode set to pattern conversions
Troubleshooting
- make sure you added the nuget packages
icu.net
andIcu4c.Win.Min
(orIcu4c.Win.Full
). - the binaries of the nuget packages need to be copied to your output directory.
For
icu.net
this happens by the assembly reference that the package adds to your project. The binaries ofIcu4c.Win.Min
are only relevant on Windows. They will get copied by theIcu4c.Win.Min.targets
file included in the nuget package.
The package installer should have added an import to the *.csproj
file similar to the following:
<Import Project="..\..\packages\Icu4c.Win.Min.54.1.31\build\Icu4c.Win.Min.targets"
Condition="Exists('..\..\packages\Icu4c.Win.Min.54.1.31\build\Icu4c.Win.Min.targets')" />
Contributing
We love contributions! The library mainly contains the functionality we need for our products. If you miss something that is part of ICU4C but not yet wrapped in icu.net, add it and create a pull request.
If you find a bug - create an issue on GitHub, then preferably fix it and create a pull request!
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.6 is compatible. netstandard2.0 was computed. netstandard2.1 was computed. |
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 is compatible. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETFramework 4.0
- System.ValueTuple (>= 4.5.0)
-
.NETFramework 4.5.1
- Microsoft.Extensions.DependencyModel (>= 2.0.4)
- System.ValueTuple (>= 4.5.0)
-
.NETStandard 1.6
- Microsoft.Extensions.DependencyModel (>= 2.0.4)
- NETStandard.Library (>= 1.6.1)
- System.Diagnostics.TraceSource (>= 4.3.0)
- System.Runtime.InteropServices.RuntimeInformation (>= 4.3.0)
- System.ValueTuple (>= 4.4.0)
-
net6.0
- Microsoft.Extensions.DependencyModel (>= 2.0.4)
- System.ValueTuple (>= 4.5.0)
NuGet packages (8)
Showing the top 5 NuGet packages that depend on icu.net:
Package | Downloads |
---|---|
SIL.WritingSystems
SIL.WritingSystems contains classes for managing and persisting writing systems using the Locale Data Markup Language (LDML) format. This library also contains classes for processing IETF (BCP-47) language tags and accessing the SIL Locale Data Repository (SLDR). |
|
ParatextData
Dll for use by third party applications needing to access Paratext's data. Compatible with SIL.Lib 12.0.x (required). Backwards compatible with data from Paratext 8.0 and 9.x. NOTE: This version of ParatextData is built using a AnyCPU configuration, but certain projects will not open correctly when run as 32-bit because of dependencies on native 64-bit libraries. |
|
SIL.Windows.Forms.Keyboarding
The SIL.Windows.Forms.Keyboarding library provides cross-platform functionality for keyboard selection and switching in Windows Forms applications. Currently, this library supports system and Keyman keyboards on Windows, and X keyboard extension (XKB) and Intelligent Input Bus (IBus) keyboards on Linux. |
|
SIL.WritingSystems.Tests
Unit tests for SIL.WritingSystems |
|
GlyssenEngine
Library for working with Glyssen project data, including scripts and casting |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on icu.net:
Repository | Stars |
---|---|
RWS/Sdl-Community
This is the place where we develop and maintain most of SDL's plugins for Trados Studio. If you want to help us or just looking for some examples this is the perfect place.
|
Version | Downloads | Last updated | |
---|---|---|---|
3.0.0-beta.297 | 967 | 8/29/2024 | |
3.0.0-beta.296 | 3,618 | 8/1/2024 | |
2.10.1-beta.5 | 5,616 | 7/4/2024 | |
2.10.1-beta.4 | 1,559 | 6/26/2024 | |
2.10.0 | 5,794 | 6/17/2024 | |
2.9.0 | 71,339 | 2/15/2023 | |
2.8.1 | 93,292 | 7/8/2022 | |
2.8.0 | 2,557 | 6/24/2022 | |
2.7.1 | 69,108 | 3/4/2021 | |
2.6.0 | 222,647 | 9/27/2019 | |
2.5.4 | 44,334 | 1/9/2019 | |
2.5.3 | 1,745 | 12/17/2018 | |
2.5.2 | 8,237 | 12/10/2018 | |
2.5.0 | 2,768 | 11/27/2018 | |
2.4.0 | 1,874 | 10/24/2018 | |
2.3.4 | 9,036 | 8/27/2018 | |
2.3.3 | 3,636 | 7/3/2018 | |
2.3.2 | 21,214 | 3/14/2018 | |
2.3.0 | 5,086 | 2/28/2018 | |
2.2.0 | 2,627 | 9/29/2017 | |
2.1.0 | 2,502 | 3/17/2017 | |
2.0.1 | 14,742 | 12/19/2016 |
Changes since version 2.8.1
Added:
- Support .net 6.0
Fixed:
- Fixed crash in `Wrapper.Cleanup` (#176)
See full changelog at https://github.com/sillsdev/icu-dotnet/blob/master/CHANGELOG.md.