├── .gitattributes ├── .gitignore ├── icon.png ├── images ├── clippy_in_action.png ├── inplace_refactoring.gif └── unit_tests.gif ├── install └── resharper-clippy.nuspec ├── lib ├── DoubleAgent-01-expose_character_window.patch ├── DoubleAgent-02-show_not_activate.patch ├── DoubleAgent.Control.dll ├── x64 │ ├── Debug │ │ ├── DaControl.dll │ │ ├── DaControl.pdb │ │ ├── DaCore.dll │ │ └── DaCore.pdb │ └── Release │ │ ├── DaControl.dll │ │ └── DaCore.dll └── x86 │ ├── Debug │ ├── DaControl.dll │ ├── DaControl.pdb │ ├── DaCore.dll │ └── DaCore.pdb │ └── Release │ ├── DaControl.dll │ └── DaCore.dll ├── license.txt ├── readme.md ├── src ├── .idea │ └── .idea.resharper-clippy │ │ └── .idea │ │ ├── .gitignore │ │ ├── .name │ │ ├── encodings.xml │ │ ├── indexLayout.xml │ │ ├── runConfigurations │ │ └── VisualStudio.xml │ │ └── vcs.xml ├── Directory.Build.props ├── Plugin.props ├── TestHarness │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── TestHarness.csproj ├── resharper-clippy.sln ├── resharper-clippy.sln.DotSettings ├── resharper-clippy │ ├── AgentFiles.proj │ ├── DoubleAgent.x64.sxs.manifest │ ├── DoubleAgent.x86.sxs.manifest │ ├── readme.md │ ├── resharper-clippy.csproj │ └── src │ │ ├── AgentApi │ │ ├── Agent.cs │ │ ├── AgentCharacter.cs │ │ ├── AgentManager.cs │ │ ├── Balloon │ │ │ ├── BalloonActionEventArgs.cs │ │ │ ├── BalloonStyles.xaml │ │ │ ├── BalloonWindow.xaml │ │ │ ├── BalloonWindow.xaml.cs │ │ │ ├── BalloonWindowHost.cs │ │ │ ├── Commands.cs │ │ │ ├── CustomChromeForm.cs │ │ │ ├── DefaultStyles.xaml │ │ │ ├── Indexed.cs │ │ │ └── JustifiedUniformGrid.cs │ │ ├── BalloonManager.cs │ │ ├── BalloonOption.cs │ │ ├── ICharacterEvents.cs │ │ ├── IUntypedSignalEx.cs │ │ ├── IWin32WindowEx.cs │ │ ├── OleWin32Window.cs │ │ └── SxS │ │ │ └── ActivationContext.cs │ │ ├── AgentClickHandler.cs │ │ ├── AltEnterHandler.cs │ │ ├── BuildAnimations.cs │ │ ├── ClippySettings.cs │ │ ├── HighlightingTracker.cs │ │ ├── InplaceRefactoringHandler.cs │ │ ├── OverriddenActions │ │ ├── AgentExtensibleAction.cs │ │ ├── FileTemplatesGenerateAction.cs │ │ ├── GenerateAction.cs │ │ ├── GotoRecentFilesAction.cs │ │ ├── IOriginalActionHandler.cs │ │ ├── InspectThisAction.cs │ │ ├── NavigateFromHereAction.cs │ │ └── RefactorThisAction.cs │ │ ├── OverridingActionRegistrar.cs │ │ ├── SaveAnimations.cs │ │ ├── SolutionVisibilityScope.cs │ │ ├── UnitTestAnimations.cs │ │ └── ZoneMarker.cs ├── runVisualStudio.ps1 └── settings.ps1 └── tools ├── nuget.exe └── vswhere.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/.gitignore -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/icon.png -------------------------------------------------------------------------------- /images/clippy_in_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/images/clippy_in_action.png -------------------------------------------------------------------------------- /images/inplace_refactoring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/images/inplace_refactoring.gif -------------------------------------------------------------------------------- /images/unit_tests.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/images/unit_tests.gif -------------------------------------------------------------------------------- /install/resharper-clippy.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/install/resharper-clippy.nuspec -------------------------------------------------------------------------------- /lib/DoubleAgent-01-expose_character_window.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/lib/DoubleAgent-01-expose_character_window.patch -------------------------------------------------------------------------------- /lib/DoubleAgent-02-show_not_activate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/lib/DoubleAgent-02-show_not_activate.patch -------------------------------------------------------------------------------- /lib/DoubleAgent.Control.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/lib/DoubleAgent.Control.dll -------------------------------------------------------------------------------- /lib/x64/Debug/DaControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/lib/x64/Debug/DaControl.dll -------------------------------------------------------------------------------- /lib/x64/Debug/DaControl.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/lib/x64/Debug/DaControl.pdb -------------------------------------------------------------------------------- /lib/x64/Debug/DaCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/lib/x64/Debug/DaCore.dll -------------------------------------------------------------------------------- /lib/x64/Debug/DaCore.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/lib/x64/Debug/DaCore.pdb -------------------------------------------------------------------------------- /lib/x64/Release/DaControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/lib/x64/Release/DaControl.dll -------------------------------------------------------------------------------- /lib/x64/Release/DaCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/lib/x64/Release/DaCore.dll -------------------------------------------------------------------------------- /lib/x86/Debug/DaControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/lib/x86/Debug/DaControl.dll -------------------------------------------------------------------------------- /lib/x86/Debug/DaControl.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/lib/x86/Debug/DaControl.pdb -------------------------------------------------------------------------------- /lib/x86/Debug/DaCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/lib/x86/Debug/DaCore.dll -------------------------------------------------------------------------------- /lib/x86/Debug/DaCore.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/lib/x86/Debug/DaCore.pdb -------------------------------------------------------------------------------- /lib/x86/Release/DaControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/lib/x86/Release/DaControl.dll -------------------------------------------------------------------------------- /lib/x86/Release/DaCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/lib/x86/Release/DaCore.dll -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/readme.md -------------------------------------------------------------------------------- /src/.idea/.idea.resharper-clippy/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/.idea/.idea.resharper-clippy/.idea/.gitignore -------------------------------------------------------------------------------- /src/.idea/.idea.resharper-clippy/.idea/.name: -------------------------------------------------------------------------------- 1 | resharper-clippy -------------------------------------------------------------------------------- /src/.idea/.idea.resharper-clippy/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/.idea/.idea.resharper-clippy/.idea/encodings.xml -------------------------------------------------------------------------------- /src/.idea/.idea.resharper-clippy/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/.idea/.idea.resharper-clippy/.idea/indexLayout.xml -------------------------------------------------------------------------------- /src/.idea/.idea.resharper-clippy/.idea/runConfigurations/VisualStudio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/.idea/.idea.resharper-clippy/.idea/runConfigurations/VisualStudio.xml -------------------------------------------------------------------------------- /src/.idea/.idea.resharper-clippy/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/.idea/.idea.resharper-clippy/.idea/vcs.xml -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Plugin.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/Plugin.props -------------------------------------------------------------------------------- /src/TestHarness/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/TestHarness/App.config -------------------------------------------------------------------------------- /src/TestHarness/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/TestHarness/App.xaml -------------------------------------------------------------------------------- /src/TestHarness/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/TestHarness/App.xaml.cs -------------------------------------------------------------------------------- /src/TestHarness/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/TestHarness/MainWindow.xaml -------------------------------------------------------------------------------- /src/TestHarness/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/TestHarness/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/TestHarness/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/TestHarness/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/TestHarness/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/TestHarness/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/TestHarness/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/TestHarness/Properties/Resources.resx -------------------------------------------------------------------------------- /src/TestHarness/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/TestHarness/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/TestHarness/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/TestHarness/Properties/Settings.settings -------------------------------------------------------------------------------- /src/TestHarness/TestHarness.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/TestHarness/TestHarness.csproj -------------------------------------------------------------------------------- /src/resharper-clippy.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy.sln -------------------------------------------------------------------------------- /src/resharper-clippy.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy.sln.DotSettings -------------------------------------------------------------------------------- /src/resharper-clippy/AgentFiles.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/AgentFiles.proj -------------------------------------------------------------------------------- /src/resharper-clippy/DoubleAgent.x64.sxs.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/DoubleAgent.x64.sxs.manifest -------------------------------------------------------------------------------- /src/resharper-clippy/DoubleAgent.x86.sxs.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/DoubleAgent.x86.sxs.manifest -------------------------------------------------------------------------------- /src/resharper-clippy/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/readme.md -------------------------------------------------------------------------------- /src/resharper-clippy/resharper-clippy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/resharper-clippy.csproj -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/Agent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/Agent.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/AgentCharacter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/AgentCharacter.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/AgentManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/AgentManager.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/Balloon/BalloonActionEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/Balloon/BalloonActionEventArgs.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/Balloon/BalloonStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/Balloon/BalloonStyles.xaml -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/Balloon/BalloonWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/Balloon/BalloonWindow.xaml -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/Balloon/BalloonWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/Balloon/BalloonWindow.xaml.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/Balloon/BalloonWindowHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/Balloon/BalloonWindowHost.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/Balloon/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/Balloon/Commands.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/Balloon/CustomChromeForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/Balloon/CustomChromeForm.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/Balloon/DefaultStyles.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/Balloon/DefaultStyles.xaml -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/Balloon/Indexed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/Balloon/Indexed.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/Balloon/JustifiedUniformGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/Balloon/JustifiedUniformGrid.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/BalloonManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/BalloonManager.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/BalloonOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/BalloonOption.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/ICharacterEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/ICharacterEvents.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/IUntypedSignalEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/IUntypedSignalEx.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/IWin32WindowEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/IWin32WindowEx.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/OleWin32Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/OleWin32Window.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentApi/SxS/ActivationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentApi/SxS/ActivationContext.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AgentClickHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AgentClickHandler.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/AltEnterHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/AltEnterHandler.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/BuildAnimations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/BuildAnimations.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/ClippySettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/ClippySettings.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/HighlightingTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/HighlightingTracker.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/InplaceRefactoringHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/InplaceRefactoringHandler.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/OverriddenActions/AgentExtensibleAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/OverriddenActions/AgentExtensibleAction.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/OverriddenActions/FileTemplatesGenerateAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/OverriddenActions/FileTemplatesGenerateAction.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/OverriddenActions/GenerateAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/OverriddenActions/GenerateAction.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/OverriddenActions/GotoRecentFilesAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/OverriddenActions/GotoRecentFilesAction.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/OverriddenActions/IOriginalActionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/OverriddenActions/IOriginalActionHandler.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/OverriddenActions/InspectThisAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/OverriddenActions/InspectThisAction.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/OverriddenActions/NavigateFromHereAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/OverriddenActions/NavigateFromHereAction.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/OverriddenActions/RefactorThisAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/OverriddenActions/RefactorThisAction.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/OverridingActionRegistrar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/OverridingActionRegistrar.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/SaveAnimations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/SaveAnimations.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/SolutionVisibilityScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/SolutionVisibilityScope.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/UnitTestAnimations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/UnitTestAnimations.cs -------------------------------------------------------------------------------- /src/resharper-clippy/src/ZoneMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/resharper-clippy/src/ZoneMarker.cs -------------------------------------------------------------------------------- /src/runVisualStudio.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/runVisualStudio.ps1 -------------------------------------------------------------------------------- /src/settings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/src/settings.ps1 -------------------------------------------------------------------------------- /tools/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/tools/nuget.exe -------------------------------------------------------------------------------- /tools/vswhere.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/citizenmatt/resharper-clippy/HEAD/tools/vswhere.exe --------------------------------------------------------------------------------