GroupDocs.Merger for .NET 19.10 Release Notes

Major Features

.NET Standard 2.0

Starting from 19.10 release GroupDocs.Merger for .NET includes .NET Standard 2.0 version. It has full functionality of regular .NET version of GroupDocs.Merger with few limitations:

  • Password-protected documents of .One format is not supported.

There are a few new other features in this regular monthly release. The most notable are:

  • Fixed the Xlsb format loading with unknown FileType;
  • Fixed merging of the ODP files with empty table;
  • Added Encoding usage of LoadOptions to the text splitting.

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
MERGERNET-627Add .NET Standard 2.0 supportNew Feature
MERGERNET-668Add LoadOptions Encoding usage for the text splittingImprovement
MERGERNET-655Format Xlsb is not load with unknown FileTypeBug
MERGERNET-686Cannot merge ODP files with tableBug

Public API and Backward Incompatible Changes

  1. LoadOptions Encoding usage for the text splitting
    The following example demonstrates how to use Encoding for the text splitting:

    Split method

    // Variables.
    string filePath = @"c:\sample.txt";
    string filePathOut = @"c:\output\line_{0}.{1}";
    
    // Options.
    LoadOptions loadOptions = new LoadOptions(FileType.Txt, Encoding.Unicode);
    TextSplitOptions splitOptions = new TextSplitOptions(filePathOut, new int[] { 3, 6 });
    
    using (Merger merger = new Merger(filePath, loadOptions))
    {
        merger.Split(splitOptions);
    }