LocalizationKit 6.0.0

dotnet add package LocalizationKit --version 6.0.0
NuGet\Install-Package LocalizationKit -Version 6.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="LocalizationKit" Version="6.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LocalizationKit --version 6.0.0
#r "nuget: LocalizationKit, 6.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install LocalizationKit as a Cake Addin
#addin nuget:?package=LocalizationKit&version=6.0.0

// Install LocalizationKit as a Cake Tool
#tool nuget:?package=LocalizationKit&version=6.0.0

LocalizationKit

LocalizationKit is a library designed to make managing localizations in .NET easier.

NuGet NuGet

Differences between LocalizationKit and SettingsKit

The main differences between LocalizationKit and SettingsKit, besides SettingsKit being meant for generic Settings management, is that Localizationkit is designed to load existing localization files and provide programmatic access to the localizations.

In the future I may create a tool to generate localization files for use with LocalizationKit and/or SettingsKit.

Product 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 is compatible.  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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.
  • net6.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on LocalizationKit:

Package Downloads
SettingsKit

A library to make managing Settings files easier for .NET projects.

LocalizationKit.Integrations.Azure

An extension library that adds the ability to Generate Localizations using Azure's Text Translator API. You must supply your own Azure API key.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
6.0.0 99 5/7/2024
5.1.2 111 3/16/2024
5.1.1 93 2/20/2024
5.1.0 244 8/2/2023
5.0.0 166 7/20/2023
4.0.0 429 10/11/2022
3.1.0 368 11/10/2021
3.0.0 381 10/29/2021
2.0.1 344 10/12/2021
2.0.0 395 5/21/2021
1.1.1 383 5/18/2021
1.1.0 366 5/18/2021
1.0.0 543 6/3/2020

## Changes since 5.1 series

### Additions
* Added methods to make it easier to add Localization Phrases to Localization classes.
* Re-added support for .NET Standard 2.0
* Add LocalizationFile - This replaces ILocalizationFile
* Ported Xml file support from SettingsKit 5.x - This is called XmlLocalizationFileProvider
* Added TextLocalizationFileProvider
* Added ResourceLocalizationFileProvider - This is somewhat experimental

### Changes
* Replaced some string concatenation with string interpolation
* Replaced some usage of var with explicit types
* Replaced a for each loop in a method with a LINQ query.
* Simplified Localization loading code for .NET 6 (or later) users of this package
* Removed unnecessary try/catch statements
* Added the proper disposal of IDictionaryEnumerator with Resource Localization
* Made it easier to access LocalizationManager class's internal Dictionary
* Renamed root namespace to LocalizationKit
* Improved Json localization file support - This now supports localization files with implicit Key Value Pairs e.g. "Key":"Value". Explicit Key Value Pair separation (e.g. "Key": "", "Value":"" ) is no longer supported

### Removals
* Removed deprecated code
* Removed dependency on SettingsKit
* Removed LocalizationFile class to make working with Localizations easier and less cumbersome