├── .gitattributes ├── .gitignore ├── IntelliFind.Test ├── IntelliFind.Test.csproj ├── Key.snk ├── Properties │ └── AssemblyInfo.cs ├── ReplaceHelpersTest.cs ├── TestHelper.cs ├── app.config └── packages.config ├── IntelliFind.sln ├── IntelliFind ├── DiagnosticListItem.cs ├── IntelliFind.csproj ├── IntelliFindCommand.cs ├── IntelliFindControl.xaml ├── IntelliFindControl.xaml.cs ├── IntelliFindPackage.cs ├── IntelliFindPackage.vsct ├── IntelliFindWindow.cs ├── Key.snk ├── Properties │ └── AssemblyInfo.cs ├── ReplaceHelpers.cs ├── Resources │ ├── IntelliFindCommand.png │ └── IntelliFindPackage.ico ├── RoslynHelpers.cs ├── RoslynVisxHelpers.cs ├── Screenshots │ └── IntelliFind.PNG ├── ScriptContext │ ├── ScriptGlobals.cs │ └── ScriptRunner.cs ├── SyntaxNodeOrTokenListItem.cs ├── ThreadPoolAsyncEnumerator.cs ├── VSPackage.resx ├── app.config ├── packages.config └── source.extension.vsixmanifest ├── License.md └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/.gitignore -------------------------------------------------------------------------------- /IntelliFind.Test/IntelliFind.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind.Test/IntelliFind.Test.csproj -------------------------------------------------------------------------------- /IntelliFind.Test/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind.Test/Key.snk -------------------------------------------------------------------------------- /IntelliFind.Test/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind.Test/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IntelliFind.Test/ReplaceHelpersTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind.Test/ReplaceHelpersTest.cs -------------------------------------------------------------------------------- /IntelliFind.Test/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind.Test/TestHelper.cs -------------------------------------------------------------------------------- /IntelliFind.Test/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind.Test/app.config -------------------------------------------------------------------------------- /IntelliFind.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind.Test/packages.config -------------------------------------------------------------------------------- /IntelliFind.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind.sln -------------------------------------------------------------------------------- /IntelliFind/DiagnosticListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/DiagnosticListItem.cs -------------------------------------------------------------------------------- /IntelliFind/IntelliFind.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/IntelliFind.csproj -------------------------------------------------------------------------------- /IntelliFind/IntelliFindCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/IntelliFindCommand.cs -------------------------------------------------------------------------------- /IntelliFind/IntelliFindControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/IntelliFindControl.xaml -------------------------------------------------------------------------------- /IntelliFind/IntelliFindControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/IntelliFindControl.xaml.cs -------------------------------------------------------------------------------- /IntelliFind/IntelliFindPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/IntelliFindPackage.cs -------------------------------------------------------------------------------- /IntelliFind/IntelliFindPackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/IntelliFindPackage.vsct -------------------------------------------------------------------------------- /IntelliFind/IntelliFindWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/IntelliFindWindow.cs -------------------------------------------------------------------------------- /IntelliFind/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/Key.snk -------------------------------------------------------------------------------- /IntelliFind/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IntelliFind/ReplaceHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/ReplaceHelpers.cs -------------------------------------------------------------------------------- /IntelliFind/Resources/IntelliFindCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/Resources/IntelliFindCommand.png -------------------------------------------------------------------------------- /IntelliFind/Resources/IntelliFindPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/Resources/IntelliFindPackage.ico -------------------------------------------------------------------------------- /IntelliFind/RoslynHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/RoslynHelpers.cs -------------------------------------------------------------------------------- /IntelliFind/RoslynVisxHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/RoslynVisxHelpers.cs -------------------------------------------------------------------------------- /IntelliFind/Screenshots/IntelliFind.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/Screenshots/IntelliFind.PNG -------------------------------------------------------------------------------- /IntelliFind/ScriptContext/ScriptGlobals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/ScriptContext/ScriptGlobals.cs -------------------------------------------------------------------------------- /IntelliFind/ScriptContext/ScriptRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/ScriptContext/ScriptRunner.cs -------------------------------------------------------------------------------- /IntelliFind/SyntaxNodeOrTokenListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/SyntaxNodeOrTokenListItem.cs -------------------------------------------------------------------------------- /IntelliFind/ThreadPoolAsyncEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/ThreadPoolAsyncEnumerator.cs -------------------------------------------------------------------------------- /IntelliFind/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/VSPackage.resx -------------------------------------------------------------------------------- /IntelliFind/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/app.config -------------------------------------------------------------------------------- /IntelliFind/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/packages.config -------------------------------------------------------------------------------- /IntelliFind/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/IntelliFind/source.extension.vsixmanifest -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/License.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FrankBakkerNl/IntelliFind/HEAD/README.md --------------------------------------------------------------------------------