├── .gitattributes ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Steam Shutdown.sln └── Steam Shutdown ├── App.config ├── Properties ├── AssemblyInfo.cs ├── Settings.Designer.cs └── Settings.settings ├── SShutdown.cs ├── Steam Shutdown.csproj ├── app.manifest └── the.ico /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjibobs/Steam-Shutdown/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjibobs/Steam-Shutdown/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: csharp 2 | solution: Steam\ Shutdown.sln 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjibobs/Steam-Shutdown/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjibobs/Steam-Shutdown/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjibobs/Steam-Shutdown/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjibobs/Steam-Shutdown/HEAD/README.md -------------------------------------------------------------------------------- /Steam Shutdown.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjibobs/Steam-Shutdown/HEAD/Steam Shutdown.sln -------------------------------------------------------------------------------- /Steam Shutdown/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjibobs/Steam-Shutdown/HEAD/Steam Shutdown/App.config -------------------------------------------------------------------------------- /Steam Shutdown/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjibobs/Steam-Shutdown/HEAD/Steam Shutdown/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Steam Shutdown/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjibobs/Steam-Shutdown/HEAD/Steam Shutdown/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Steam Shutdown/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjibobs/Steam-Shutdown/HEAD/Steam Shutdown/Properties/Settings.settings -------------------------------------------------------------------------------- /Steam Shutdown/SShutdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjibobs/Steam-Shutdown/HEAD/Steam Shutdown/SShutdown.cs -------------------------------------------------------------------------------- /Steam Shutdown/Steam Shutdown.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjibobs/Steam-Shutdown/HEAD/Steam Shutdown/Steam Shutdown.csproj -------------------------------------------------------------------------------- /Steam Shutdown/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjibobs/Steam-Shutdown/HEAD/Steam Shutdown/app.manifest -------------------------------------------------------------------------------- /Steam Shutdown/the.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjibobs/Steam-Shutdown/HEAD/Steam Shutdown/the.ico --------------------------------------------------------------------------------