L10NSharp.CheckOrFixXliff 8.0.0

There is a newer prerelease 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
9.0.0-beta0001 236 9/18/2025
8.0.0 199 3/12/2025
8.0.0-beta0023 154 3/12/2025
8.0.0-beta0021 153 3/12/2025
8.0.0-beta0013 206 3/7/2025
8.0.0-beta0005 111 6/4/2024
8.0.0-beta0004 108 5/10/2024
8.0.0-beta0003 109 4/19/2024
7.0.1-beta0001 152 4/15/2024
7.0.0 353 11/6/2023
7.0.0-beta0013 183 11/3/2023
7.0.0-beta0011 240 3/17/2023
7.0.0-beta0010 219 3/13/2023
6.1.0-beta0009 169 3/13/2023
6.1.0-beta0008 227 12/9/2022
6.1.0-beta0007 218 12/9/2022
6.0.1-beta0002 223 11/23/2022
6.0.0 367 11/23/2022
6.0.0-beta0018 273 11/21/2022
6.0.0-beta0017 256 10/7/2022
6.0.0-beta0015 308 8/24/2022
6.0.0-beta0013 286 8/24/2022
6.0.0-beta0003 312 7/12/2022
5.0.0 498 7/8/2022
5.0.0-beta0098 277 7/8/2022
5.0.0-beta0097 305 7/8/2022
5.0.0-beta0094 319 6/2/2022
5.0.0-beta0092 312 5/31/2022
5.0.0-beta0090 286 5/19/2022
5.0.0-beta0088 310 5/17/2022
5.0.0-beta0086 289 4/12/2022
5.0.0-beta0082 313 4/11/2022
5.0.0-beta0080 322 3/9/2022
5.0.0-beta0059 337 2/4/2022
5.0.0-beta.77 192 2/21/2022
5.0.0-beta.75 211 2/4/2022
4.2.0-beta0006 295 8/20/2021
4.2.0-beta0004 265 5/14/2021
4.1.1-beta0002 304 4/14/2021
4.1.0 510 3/4/2021
4.1.0-beta0051 357 3/4/2021
4.1.0-beta0050 334 1/28/2021
4.1.0-beta0049 334 1/26/2021
4.1.0-beta0047 407 7/6/2020
4.1.0-beta0045 450 6/8/2020
4.1.0-beta0043 451 6/8/2020
4.1.0-beta0039 436 6/5/2020
4.1.0-beta0036 435 5/28/2020
4.1.0-beta0032 467 5/27/2020
4.1.0-beta0027 487 4/7/2020
4.1.0-beta0026 497 4/2/2020

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