L10NSharp.ExtractXliff 5.0.0-beta0086

This is a prerelease version of L10NSharp.ExtractXliff.
There is a newer version of this package available.
See the version list below for details.
dotnet add package L10NSharp.ExtractXliff --version 5.0.0-beta0086                
NuGet\Install-Package L10NSharp.ExtractXliff -Version 5.0.0-beta0086                
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.ExtractXliff" Version="5.0.0-beta0086" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add L10NSharp.ExtractXliff --version 5.0.0-beta0086                
#r "nuget: L10NSharp.ExtractXliff, 5.0.0-beta0086"                
#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 L10NSharp.ExtractXliff as a Cake Addin
#addin nuget:?package=L10NSharp.ExtractXliff&version=5.0.0-beta0086&prerelease

// Install L10NSharp.ExtractXliff as a Cake Tool
#tool nuget:?package=L10NSharp.ExtractXliff&version=5.0.0-beta0086&prerelease                

Extract static strings from one or more C# assemblies (either .dll or .exe)
   and save them as XLIFF file.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • .NETFramework 4.6.1

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
8.0.0-beta0005 98 6/4/2024
8.0.0-beta0004 98 5/10/2024
8.0.0-beta0003 83 4/19/2024
7.0.1-beta0001 98 4/15/2024
7.0.0 348 11/6/2023
7.0.0-beta0013 193 11/3/2023
7.0.0-beta0011 454 3/17/2023
7.0.0-beta0010 293 3/13/2023
6.1.0-beta0009 234 3/13/2023
6.1.0-beta0008 284 12/9/2022
6.1.0-beta0007 290 12/9/2022
6.0.1-beta0002 288 11/23/2022
6.0.0 388 11/23/2022
6.0.0-beta0018 312 11/21/2022
6.0.0-beta0017 345 10/7/2022
6.0.0-beta0015 303 8/24/2022
6.0.0-beta0013 284 8/24/2022
6.0.0-beta0003 361 7/12/2022
5.0.0 490 7/8/2022
5.0.0-beta0098 329 7/8/2022
5.0.0-beta0097 371 7/8/2022
5.0.0-beta0094 333 6/2/2022
5.0.0-beta0092 337 5/31/2022
5.0.0-beta0090 378 5/19/2022
5.0.0-beta0088 326 5/17/2022
5.0.0-beta0086 333 4/12/2022
5.0.0-beta0082 358 4/11/2022
5.0.0-beta0080 582 3/9/2022
5.0.0-beta0059 292 2/4/2022
5.0.0-beta.77 119 2/21/2022
5.0.0-beta.75 129 2/4/2022
4.2.0-beta0006 274 8/20/2021
4.2.0-beta0004 265 5/14/2021
4.1.1-beta0002 259 4/14/2021
4.1.0 454 3/4/2021
4.1.0-beta0051 267 3/4/2021
4.1.0-beta0050 299 1/28/2021
4.1.0-beta0049 258 1/26/2021
4.1.0-beta0047 385 7/6/2020
4.1.0-beta0045 372 6/8/2020
4.1.0-beta0043 433 6/8/2020
4.1.0-beta0039 416 6/5/2020
4.1.0-beta0036 399 5/28/2020
4.1.0-beta0032 357 5/27/2020
4.1.0-beta0027 1,755 4/7/2020
4.1.0-beta0026 466 4/2/2020

Changes since version 4.1.0

Added:
- option `LocalizationManager.ThrowIfManagerDisposed` to not throw if LM disposed (BL-9904)
- XliffBody.TransUnitsUnordered for where you just need to enumerate all of them.
- (Made public) XliffBody.AddTransUnit and .RemoveTransUnit for where you need to modify.
- XliffBody.TransUnitsForXml. This is necessarily public to support (backwards-compatible)
   serialization and deserialization in XML, but is not intended for any other purpose.

Changed:
- Made string retrieval operations on Xliff-based LocalizationManagers thread-safe
- Added ILocalizationManager parameter to StringsLocalizedHandler
- It's long been a convention that xliff file names are module.lang.xlf (e.g., Bloom.fr.xlf)
or else kept in language-code folders (.../en/Bloom.xlf) if UseLanguageCodeFolders is set.
With the latest changes, this is required: the language name indicated in these ways in the file
name must match the language declared in the target-language attribute, or at least match the
first element of the target-language (e.g., a file with target-languge es-ES may be stored in
file like Bloom.es.xlf or .../es/Bloom.xlf).

Removed:
- XliffBody.TransUnits, as there is no good way to make this thread-safe for all the ways
   it could be used, such as adding items to the list. (See Added for replacements.)

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