We’re happy to announce the GroupDocs.Search for .NET 25.11 release, available as of November 2025. This update brings a small but useful enhancement for plain‑text files and a fix that makes text extraction with backup privileges reliable.
What’s new in this release
- [Enhancement] Implement default text extractor for plain‑text file types (SEARCHNET‑3524) – the library now includes a built‑in extractor for .log files, so you can index those documents without writing a custom extractor.
Fixes and enhancements
- [Fix] Error during text extraction with backup privileges resolved (SEARCHNET‑3522) – the
Extractornow works correctly whenExtractionOptions.UseBackupPrivilegeis set totrue.
Public API change: a newTempFolderproperty was added toGroupDocs.Search.Common.ExtractorSettingsto let you specify a temporary working directory.
using GroupDocs.Search;
using GroupDocs.Search.Common;
// Configure a temporary folder for the extractor (required for the fix)
Extractor extractor = new Extractor();
extractor.Settings.TempFolder = @"C:\Temp\SearchExtractor";
// Enable backup privilege when extracting
ExtractionOptions options = new ExtractionOptions
{
UseBackupPrivilege = true
};
// Load the protected document
Document document = Document.CreateFromFile(@"C:\Docs\protected.docx");
// Perform extraction
ExtractedData data = extractor.Extract(document, options);
// ...process `data` as needed
How to get the update
- NuGet – Upgrade to the latest package:
# Package Manager
NuGet\Install-Package GroupDocs.Search -Version 25.11.0
# .NET CLI
dotnet add package GroupDocs.Search --version 25.11.0
# Package Manager
NuGet\Install-Package GroupDocs.Search.NETFramework -Version 25.11.0
# .NET CLI
dotnet add package GroupDocs.Search.NETFramework --version 25.11.0
- Direct Download – Download the compiled assemblies for .NET from the official release page:
https://releases.groupdocs.com/search/net/new-releases/groupdocs.search-for-.net-25.11-dlls-only/
https://releases.groupdocs.com/search/net/new-releases/groupdocs.search-for-.net-25.11/
Resources
- Full Release Notes – https://releases.groupdocs.com/search/net/release-notes/2025/groupdocs-search-for-net-25-11-release-notes/ (or the page you are reading)
- Documentation – https://docs.groupdocs.com/search/net/
- Free Support Forum – https://forum.groupdocs.com/c/search/
Feel free to upgrade and let us know if you encounter any issues. Happy searching!