├── .gitignore ├── LICENSE ├── README.md ├── SteamShutdown.Tests ├── .gitignore ├── AcfFiles │ ├── appmanifest_213670.acf │ ├── appmanifest_286080.acf │ ├── appmanifest_403640.acf │ ├── csv.acf │ ├── empty.acf │ ├── incomplete.acf │ ├── json-like.acf │ ├── nulls.acf │ └── random-binary.acf ├── AcfParsingTests.cs ├── IsDownloadingTests.cs ├── Properties │ └── AssemblyInfo.cs ├── SteamShutdown.Tests.csproj ├── VdfFiles │ ├── new_format_with_mounted.vdf │ ├── new_format_without_mounted.vdf │ └── old_format.vdf └── VdfParsingTests.cs ├── SteamShutdown.sln └── SteamShutdown ├── Actions ├── Action.cs ├── Hibernate.cs ├── Shutdown.cs └── Sleep.cs ├── App.config ├── App.cs ├── CustomApplicationContext.cs ├── IPC.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Resources └── icon.ico ├── Steam.cs ├── SteamShutdown.cs ├── SteamShutdown.csproj ├── Steam_Events.cs ├── icon.pdn └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/README.md -------------------------------------------------------------------------------- /SteamShutdown.Tests/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj 3 | *.suo 4 | /packages -------------------------------------------------------------------------------- /SteamShutdown.Tests/AcfFiles/appmanifest_213670.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown.Tests/AcfFiles/appmanifest_213670.acf -------------------------------------------------------------------------------- /SteamShutdown.Tests/AcfFiles/appmanifest_286080.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown.Tests/AcfFiles/appmanifest_286080.acf -------------------------------------------------------------------------------- /SteamShutdown.Tests/AcfFiles/appmanifest_403640.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown.Tests/AcfFiles/appmanifest_403640.acf -------------------------------------------------------------------------------- /SteamShutdown.Tests/AcfFiles/csv.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown.Tests/AcfFiles/csv.acf -------------------------------------------------------------------------------- /SteamShutdown.Tests/AcfFiles/empty.acf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SteamShutdown.Tests/AcfFiles/incomplete.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown.Tests/AcfFiles/incomplete.acf -------------------------------------------------------------------------------- /SteamShutdown.Tests/AcfFiles/json-like.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown.Tests/AcfFiles/json-like.acf -------------------------------------------------------------------------------- /SteamShutdown.Tests/AcfFiles/nulls.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown.Tests/AcfFiles/nulls.acf -------------------------------------------------------------------------------- /SteamShutdown.Tests/AcfFiles/random-binary.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown.Tests/AcfFiles/random-binary.acf -------------------------------------------------------------------------------- /SteamShutdown.Tests/AcfParsingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown.Tests/AcfParsingTests.cs -------------------------------------------------------------------------------- /SteamShutdown.Tests/IsDownloadingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown.Tests/IsDownloadingTests.cs -------------------------------------------------------------------------------- /SteamShutdown.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SteamShutdown.Tests/SteamShutdown.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown.Tests/SteamShutdown.Tests.csproj -------------------------------------------------------------------------------- /SteamShutdown.Tests/VdfFiles/new_format_with_mounted.vdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown.Tests/VdfFiles/new_format_with_mounted.vdf -------------------------------------------------------------------------------- /SteamShutdown.Tests/VdfFiles/new_format_without_mounted.vdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown.Tests/VdfFiles/new_format_without_mounted.vdf -------------------------------------------------------------------------------- /SteamShutdown.Tests/VdfFiles/old_format.vdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown.Tests/VdfFiles/old_format.vdf -------------------------------------------------------------------------------- /SteamShutdown.Tests/VdfParsingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown.Tests/VdfParsingTests.cs -------------------------------------------------------------------------------- /SteamShutdown.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown.sln -------------------------------------------------------------------------------- /SteamShutdown/Actions/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/Actions/Action.cs -------------------------------------------------------------------------------- /SteamShutdown/Actions/Hibernate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/Actions/Hibernate.cs -------------------------------------------------------------------------------- /SteamShutdown/Actions/Shutdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/Actions/Shutdown.cs -------------------------------------------------------------------------------- /SteamShutdown/Actions/Sleep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/Actions/Sleep.cs -------------------------------------------------------------------------------- /SteamShutdown/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/App.config -------------------------------------------------------------------------------- /SteamShutdown/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/App.cs -------------------------------------------------------------------------------- /SteamShutdown/CustomApplicationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/CustomApplicationContext.cs -------------------------------------------------------------------------------- /SteamShutdown/IPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/IPC.cs -------------------------------------------------------------------------------- /SteamShutdown/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SteamShutdown/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SteamShutdown/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/Properties/Resources.resx -------------------------------------------------------------------------------- /SteamShutdown/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SteamShutdown/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/Properties/Settings.settings -------------------------------------------------------------------------------- /SteamShutdown/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/Resources/icon.ico -------------------------------------------------------------------------------- /SteamShutdown/Steam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/Steam.cs -------------------------------------------------------------------------------- /SteamShutdown/SteamShutdown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/SteamShutdown.cs -------------------------------------------------------------------------------- /SteamShutdown/SteamShutdown.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/SteamShutdown.csproj -------------------------------------------------------------------------------- /SteamShutdown/Steam_Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/Steam_Events.cs -------------------------------------------------------------------------------- /SteamShutdown/icon.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/icon.pdn -------------------------------------------------------------------------------- /SteamShutdown/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akorb/SteamShutdown/HEAD/SteamShutdown/packages.config --------------------------------------------------------------------------------