├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── dotnet-desktop.yml ├── .gitignore ├── EverythingSearchClient.sln ├── EverythingSearchClient ├── EverythingBusyException.cs ├── EverythingIPC.cs ├── EverythingSearchClient.csproj ├── IpcWindow.cs ├── MessageReceiverWindow.cs ├── Result.cs ├── ResultsNotReceivedException.cs ├── SearchClient.cs └── ServiceControl.cs ├── ExampleApp ├── ExampleApp.csproj └── Program.cs ├── Images ├── MagnifyingGlass.afdesign ├── MagnifyingGlass.ico └── MagnifyingGlass_x128.png ├── LICENSE ├── README.md ├── README_nuget.md ├── Reference ├── Everything-SDK-ipc │ └── everything_ipc.h └── EverythingDemo │ ├── EverythingDemo.cpp │ ├── EverythingDemo.sln │ ├── EverythingDemo.vcxproj │ └── EverythingDemo.vcxproj.filters ├── TestNugetConsoleApp ├── Program.cs ├── README.md ├── TestNugetConsoleApp.csproj ├── TestNugetConsoleApp.sln └── nuget.config └── TestProject ├── DataGenerator.cs ├── README.md ├── TestBusyBehavior.cs ├── TestProject.csproj ├── TestQuery2Results.cs ├── TestResultLimit.cs ├── TestSearchFlags.cs ├── TestServiceInfo.cs ├── TestSortedResults.cs └── Usings.cs /.gitattributes: -------------------------------------------------------------------------------- 1 | Reference/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet-desktop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/.github/workflows/dotnet-desktop.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/.gitignore -------------------------------------------------------------------------------- /EverythingSearchClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/EverythingSearchClient.sln -------------------------------------------------------------------------------- /EverythingSearchClient/EverythingBusyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/EverythingSearchClient/EverythingBusyException.cs -------------------------------------------------------------------------------- /EverythingSearchClient/EverythingIPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/EverythingSearchClient/EverythingIPC.cs -------------------------------------------------------------------------------- /EverythingSearchClient/EverythingSearchClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/EverythingSearchClient/EverythingSearchClient.csproj -------------------------------------------------------------------------------- /EverythingSearchClient/IpcWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/EverythingSearchClient/IpcWindow.cs -------------------------------------------------------------------------------- /EverythingSearchClient/MessageReceiverWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/EverythingSearchClient/MessageReceiverWindow.cs -------------------------------------------------------------------------------- /EverythingSearchClient/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/EverythingSearchClient/Result.cs -------------------------------------------------------------------------------- /EverythingSearchClient/ResultsNotReceivedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/EverythingSearchClient/ResultsNotReceivedException.cs -------------------------------------------------------------------------------- /EverythingSearchClient/SearchClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/EverythingSearchClient/SearchClient.cs -------------------------------------------------------------------------------- /EverythingSearchClient/ServiceControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/EverythingSearchClient/ServiceControl.cs -------------------------------------------------------------------------------- /ExampleApp/ExampleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/ExampleApp/ExampleApp.csproj -------------------------------------------------------------------------------- /ExampleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/ExampleApp/Program.cs -------------------------------------------------------------------------------- /Images/MagnifyingGlass.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/Images/MagnifyingGlass.afdesign -------------------------------------------------------------------------------- /Images/MagnifyingGlass.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/Images/MagnifyingGlass.ico -------------------------------------------------------------------------------- /Images/MagnifyingGlass_x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/Images/MagnifyingGlass_x128.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/README.md -------------------------------------------------------------------------------- /README_nuget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/README_nuget.md -------------------------------------------------------------------------------- /Reference/Everything-SDK-ipc/everything_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/Reference/Everything-SDK-ipc/everything_ipc.h -------------------------------------------------------------------------------- /Reference/EverythingDemo/EverythingDemo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/Reference/EverythingDemo/EverythingDemo.cpp -------------------------------------------------------------------------------- /Reference/EverythingDemo/EverythingDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/Reference/EverythingDemo/EverythingDemo.sln -------------------------------------------------------------------------------- /Reference/EverythingDemo/EverythingDemo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/Reference/EverythingDemo/EverythingDemo.vcxproj -------------------------------------------------------------------------------- /Reference/EverythingDemo/EverythingDemo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/Reference/EverythingDemo/EverythingDemo.vcxproj.filters -------------------------------------------------------------------------------- /TestNugetConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/TestNugetConsoleApp/Program.cs -------------------------------------------------------------------------------- /TestNugetConsoleApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/TestNugetConsoleApp/README.md -------------------------------------------------------------------------------- /TestNugetConsoleApp/TestNugetConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/TestNugetConsoleApp/TestNugetConsoleApp.csproj -------------------------------------------------------------------------------- /TestNugetConsoleApp/TestNugetConsoleApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/TestNugetConsoleApp/TestNugetConsoleApp.sln -------------------------------------------------------------------------------- /TestNugetConsoleApp/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/TestNugetConsoleApp/nuget.config -------------------------------------------------------------------------------- /TestProject/DataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/TestProject/DataGenerator.cs -------------------------------------------------------------------------------- /TestProject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/TestProject/README.md -------------------------------------------------------------------------------- /TestProject/TestBusyBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/TestProject/TestBusyBehavior.cs -------------------------------------------------------------------------------- /TestProject/TestProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/TestProject/TestProject.csproj -------------------------------------------------------------------------------- /TestProject/TestQuery2Results.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/TestProject/TestQuery2Results.cs -------------------------------------------------------------------------------- /TestProject/TestResultLimit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/TestProject/TestResultLimit.cs -------------------------------------------------------------------------------- /TestProject/TestSearchFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/TestProject/TestSearchFlags.cs -------------------------------------------------------------------------------- /TestProject/TestServiceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/TestProject/TestServiceInfo.cs -------------------------------------------------------------------------------- /TestProject/TestSortedResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/TestProject/TestSortedResults.cs -------------------------------------------------------------------------------- /TestProject/Usings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sgrottel/EverythingSearchClient/HEAD/TestProject/Usings.cs --------------------------------------------------------------------------------