EverythingNet icon indicating copy to clipboard operation
EverythingNet copied to clipboard

A .fluent NET library for the great Everything Search library from voidtools

Results 6 EverythingNet issues
Sort by recently updated
recently updated
newest added

Bumps NuGet.CommandLine from 4.1.0 to 4.9.5. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=NuGet.CommandLine&package-manager=nuget&previous-version=4.1.0&new-version=4.9.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

i downloaded the library from nuget https://www.nuget.org/packages/EverythingNet/ but i cant use it in my application wpf .netcore 5 ![image](https://user-images.githubusercontent.com/65450661/126071852-32c078c2-3824-4466-bc79-43f52c7dca48.png)

Hello, Thank you for this library. The fluent api is quite handy, but, is there any reason not to expose direct string queries to everything? Something like : ``` var...

When file path exceeds 260 character limits, everthing search finds the file but shows wrong result: IEverything everything = new Everything(); everything.Reset(); var results = everything.Search().Name.Contains("*.[extension]"); In FullPath member, I...

Everything ET = new Everything(); ET.ResulKind=ResultKind.FilesOnly; ET.SortKey = SortingKey.DateModifiedDescending; IQuery query = ET.Search(); Type T=query.Not.GetType(); IQuery result = ((IQuery)T.GetConstructors()[0].Invoke(new object[]{ET,query,@"ext:PDF size:>100000 !$ !D:\"})); var final= result.Name;