├── .gitattributes ├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── PSEverything.sln ├── PSEverything ├── ArgumentCompleter.cs ├── Everything.cs ├── NativeMethods32.cs ├── NativeMethods64.cs ├── PSEverything.csproj ├── PSEverything.dll-Help.xml ├── PSEverything.psd1 ├── SearchEverythingCommand.cs ├── SelectEverythingStringCommand.cs ├── dll │ ├── Everything32.dll │ └── Everything64.dll └── packages.config ├── PSEverythingStandard └── Class1.cs ├── README.md ├── Tests └── PSEverythingTests │ ├── PSEverythingTests.csproj │ ├── SelectEverythingTests.cs │ └── packages.config ├── install.ps1 └── publish.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/LICENSE -------------------------------------------------------------------------------- /PSEverything.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/PSEverything.sln -------------------------------------------------------------------------------- /PSEverything/ArgumentCompleter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/PSEverything/ArgumentCompleter.cs -------------------------------------------------------------------------------- /PSEverything/Everything.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/PSEverything/Everything.cs -------------------------------------------------------------------------------- /PSEverything/NativeMethods32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/PSEverything/NativeMethods32.cs -------------------------------------------------------------------------------- /PSEverything/NativeMethods64.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/PSEverything/NativeMethods64.cs -------------------------------------------------------------------------------- /PSEverything/PSEverything.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/PSEverything/PSEverything.csproj -------------------------------------------------------------------------------- /PSEverything/PSEverything.dll-Help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/PSEverything/PSEverything.dll-Help.xml -------------------------------------------------------------------------------- /PSEverything/PSEverything.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/PSEverything/PSEverything.psd1 -------------------------------------------------------------------------------- /PSEverything/SearchEverythingCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/PSEverything/SearchEverythingCommand.cs -------------------------------------------------------------------------------- /PSEverything/SelectEverythingStringCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/PSEverything/SelectEverythingStringCommand.cs -------------------------------------------------------------------------------- /PSEverything/dll/Everything32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/PSEverything/dll/Everything32.dll -------------------------------------------------------------------------------- /PSEverything/dll/Everything64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/PSEverything/dll/Everything64.dll -------------------------------------------------------------------------------- /PSEverything/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/PSEverything/packages.config -------------------------------------------------------------------------------- /PSEverythingStandard/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/PSEverythingStandard/Class1.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/README.md -------------------------------------------------------------------------------- /Tests/PSEverythingTests/PSEverythingTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/Tests/PSEverythingTests/PSEverythingTests.csproj -------------------------------------------------------------------------------- /Tests/PSEverythingTests/SelectEverythingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/Tests/PSEverythingTests/SelectEverythingTests.cs -------------------------------------------------------------------------------- /Tests/PSEverythingTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/Tests/PSEverythingTests/packages.config -------------------------------------------------------------------------------- /install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/install.ps1 -------------------------------------------------------------------------------- /publish.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powercode/PSEverything/HEAD/publish.ps1 --------------------------------------------------------------------------------