EverythingNet
EverythingNet copied to clipboard
A .fluent NET library for the great Everything Search library from voidtools
Bumps NuGet.CommandLine from 4.1.0 to 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...
i downloaded the library from nuget https://www.nuget.org/packages/EverythingNet/ but i cant use it in my application wpf .netcore 5 
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;