├── .gitattributes ├── .gitignore ├── Images └── demo.gif ├── LICENCE ├── LICENCE.txt ├── PowerMode.sln ├── PowerModeV2 ├── DebugHelper.cs ├── ExplosionParticle.cs ├── ExplosionViewportAdornment.cs ├── ExplosionViewportAdornmentTextViewCreationListener.cs ├── Extensions │ └── RandomExtensions.cs ├── Key.snk ├── LICENCE.txt ├── OptionPageGeneral.cs ├── PowerMode │ ├── IPowerMode.cs │ └── PowerModeService.cs ├── PowerModePackage.cs ├── PowerModePackage.vsct ├── PowerModeV2.csproj ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── PowerModeOptionsPackage.ico │ ├── PowerModePackage.ico │ └── TogglePowerModeCommand.png ├── TogglePowerModeCommand.cs ├── VSPackage.resx ├── demo.gif ├── packages.config └── source.extension.vsixmanifest └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/Images/demo.gif -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/LICENCE -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /PowerMode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerMode.sln -------------------------------------------------------------------------------- /PowerModeV2/DebugHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/DebugHelper.cs -------------------------------------------------------------------------------- /PowerModeV2/ExplosionParticle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/ExplosionParticle.cs -------------------------------------------------------------------------------- /PowerModeV2/ExplosionViewportAdornment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/ExplosionViewportAdornment.cs -------------------------------------------------------------------------------- /PowerModeV2/ExplosionViewportAdornmentTextViewCreationListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/ExplosionViewportAdornmentTextViewCreationListener.cs -------------------------------------------------------------------------------- /PowerModeV2/Extensions/RandomExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/Extensions/RandomExtensions.cs -------------------------------------------------------------------------------- /PowerModeV2/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/Key.snk -------------------------------------------------------------------------------- /PowerModeV2/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/LICENCE.txt -------------------------------------------------------------------------------- /PowerModeV2/OptionPageGeneral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/OptionPageGeneral.cs -------------------------------------------------------------------------------- /PowerModeV2/PowerMode/IPowerMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/PowerMode/IPowerMode.cs -------------------------------------------------------------------------------- /PowerModeV2/PowerMode/PowerModeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/PowerMode/PowerModeService.cs -------------------------------------------------------------------------------- /PowerModeV2/PowerModePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/PowerModePackage.cs -------------------------------------------------------------------------------- /PowerModeV2/PowerModePackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/PowerModePackage.vsct -------------------------------------------------------------------------------- /PowerModeV2/PowerModeV2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/PowerModeV2.csproj -------------------------------------------------------------------------------- /PowerModeV2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PowerModeV2/Resources/PowerModeOptionsPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/Resources/PowerModeOptionsPackage.ico -------------------------------------------------------------------------------- /PowerModeV2/Resources/PowerModePackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/Resources/PowerModePackage.ico -------------------------------------------------------------------------------- /PowerModeV2/Resources/TogglePowerModeCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/Resources/TogglePowerModeCommand.png -------------------------------------------------------------------------------- /PowerModeV2/TogglePowerModeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/TogglePowerModeCommand.cs -------------------------------------------------------------------------------- /PowerModeV2/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/VSPackage.resx -------------------------------------------------------------------------------- /PowerModeV2/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/demo.gif -------------------------------------------------------------------------------- /PowerModeV2/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/packages.config -------------------------------------------------------------------------------- /PowerModeV2/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/PowerModeV2/source.extension.vsixmanifest -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiamMorrow/Visual-Studio-Power-Mode/HEAD/README.md --------------------------------------------------------------------------------