L10NSharp.CheckOrFixXliff 8.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package L10NSharp.CheckOrFixXliff --version 8.0.0
                    
NuGet\Install-Package L10NSharp.CheckOrFixXliff -Version 8.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="L10NSharp.CheckOrFixXliff" Version="8.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="L10NSharp.CheckOrFixXliff" Version="8.0.0" />
                    
Directory.Packages.props
<PackageReference Include="L10NSharp.CheckOrFixXliff" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add L10NSharp.CheckOrFixXliff --version 8.0.0
                    
#r "nuget: L10NSharp.CheckOrFixXliff, 8.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.
#:package L10NSharp.CheckOrFixXliff@8.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=L10NSharp.CheckOrFixXliff&version=8.0.0
                    
Install as a Cake Addin
#tool nuget:?package=L10NSharp.CheckOrFixXliff&version=8.0.0
                    
Install as a Cake Tool

Validate and fix XLIFF files.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.0-beta0014 101 7/8/2026
10.0.0-beta0013 107 6/29/2026
10.0.0-beta0012 137 6/26/2026
10.0.0-beta0011 101 6/26/2026
10.0.0-beta0010 212 6/17/2026
10.0.0-beta0009 101 6/15/2026
10.0.0-beta0008 105 6/15/2026
10.0.0-beta0007 103 6/15/2026
10.0.0-beta0006 101 6/15/2026
10.0.0-beta0005 103 6/5/2026
10.0.0-beta0004 100 5/4/2026
10.0.0-beta0003 93 5/4/2026
10.0.0-beta0002 105 4/28/2026
10.0.0-beta0001 115 2/9/2026
9.0.0 156 2/3/2026
9.0.0-beta0002 107 2/3/2026
9.0.0-beta0001 345 9/18/2025
8.0.0 311 3/12/2025
8.0.0-beta0023 220 3/12/2025
8.0.0-beta0021 219 3/12/2025
Loading failed

Changes since version 7.0.0

Changed:
-   BREAKING CHANGE: If no `LocalizationManager`s have been created, but the client asks for a string to be localized, an `InvalidOperationException` is thrown. This is to prevent an invalid state where language IDs get mapped incorrectly at the beginning and then never get updated which can cause us to fail to return properly localized strings when requested (see BL-13245). This is a breaking change because it may cause existing code to throw an exception. The fix is to ensure that a LocalizationManager is created before calling any localization methods. Or, to maintain existing behavior, set `LocalizationManager.StrictInitializationMode` to false.
-   BREAKING CHANGE: Changed the signature of StringExtractor.DoExtractingWork to return an IReadOnlyList instead of an IEnumerable. It is doubtful that anything outside L10nSharp is actually using this, but it is a breaking change because it may cause existing code to fail to compile. The fix is to change the type of the variable that receives the return value to IReadOnlyList.
 - Reduced the number of different types of exceptions likely to be thrown as a result of passing an invalid appVersion to the XLiffLocalizationManager constructor. Now, if the appVersion is invalid, an ArgumentException is thrown and the original exception from the call to Version.Parse is the internal exception. This is a technically a breaking change because if any existing code was catching the more specific exception types, the logic would need to be changed to catch only the ArgumentException and then do more specific processing based on the type of the inner exception. But since the details of the typesof exceptions was never explicitly documented and since applications would not be likely to be able to recover from such exceptions, it's probably very unlikely that any code was actually handling these exceptions in this way.

See full changelog at https://github.com/sillsdev/l10nsharp/blob/master/CHANGELOG.md