EverythingSearchClient 0.8.0.51

dotnet add package EverythingSearchClient --version 0.8.0.51
NuGet\Install-Package EverythingSearchClient -Version 0.8.0.51
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="EverythingSearchClient" Version="0.8.0.51" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EverythingSearchClient --version 0.8.0.51
#r "nuget: EverythingSearchClient, 0.8.0.51"
#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 EverythingSearchClient as a Cake Addin
#addin nuget:?package=EverythingSearchClient&version=0.8.0.51

// Install EverythingSearchClient as a Cake Tool
#tool nuget:?package=EverythingSearchClient&version=0.8.0.51

🔎 EverythingSearchClient

A .NET client library for Voidtools' Everything search engine, without the native Everything SDK dll.

I wrote this library, because I wanted a managed .NET solution with a simple interface, which would not depend on the native code SDK by Voidtools. I wanted to have one AnyCpu Dll to do the job.

So, this library uses a message-only window and the IPC mechanism to communicate between your application and the Everything service. This way, the dependencies and P/Invoke class are limited to functions of the Windows OS and the official .NET runtime.

Everything service must be running on your machine.

Usage

The primary interface is:

SearchClient everything = new();

Result res = everything.Search(".txt");
// search all files/folders with '.txt' in their name (not just as extension)

Console.WriteLine("Found {0} items:", res.NumItems);
foreach (Result.Item item in res.Items)
{
	Console.WriteLine(item.Name);
}

There are multiple additional, optional parameters and overload variants of that function.

License

This project is freely available under the terms of the Apache License v.2.0.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on EverythingSearchClient:

Package Downloads
md.Nuke.Cola

Utilities for Nuke execution engine, including Tool argument propagation and Build Plugin discovery

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.8.0.51 188 1/10/2024
0.7.0.46 207 11/12/2023
0.6.0.41 204 8/6/2023
0.5.0.39 156 6/3/2023
0.4.0.37 131 5/26/2023
0.3.0.28 285 12/21/2022
0.2.0.25 265 12/16/2022
0.1.1.18 314 12/2/2022
0.1.0.14 312 12/1/2022