├── .editorconfig ├── .gitignore ├── App.config ├── LICENSE ├── PowerMode.csproj ├── PowerMode.sln ├── Properties └── AssemblyInfo.cs ├── README.md └── SetPowerMode.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronKelley/PowerMode/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.vs 2 | /bin 3 | /obj 4 | -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronKelley/PowerMode/HEAD/App.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronKelley/PowerMode/HEAD/LICENSE -------------------------------------------------------------------------------- /PowerMode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronKelley/PowerMode/HEAD/PowerMode.csproj -------------------------------------------------------------------------------- /PowerMode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronKelley/PowerMode/HEAD/PowerMode.sln -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronKelley/PowerMode/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronKelley/PowerMode/HEAD/README.md -------------------------------------------------------------------------------- /SetPowerMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronKelley/PowerMode/HEAD/SetPowerMode.cs --------------------------------------------------------------------------------