├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── Resources ├── Updater.exe ├── XSOWin.ico ├── XSOWinUpdater_Icon.ico └── XSOWin_Icon.png ├── Updater ├── Config.cs ├── GitHubApiResponseJson.cs ├── Program.cs └── Updater.csproj ├── WindowsXSO.sln ├── WindowsXSO.sln.DotSettings.user └── WindowsXSO ├── GitHubApiResponseJson └── GitHubApiResponseJson.cs ├── Language.cs ├── Program.cs ├── Tools ├── Configuration.cs ├── Minimizer.cs └── StringUtils.cs ├── Updater.cs └── WindowsXSO.csproj /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Updater.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/Resources/Updater.exe -------------------------------------------------------------------------------- /Resources/XSOWin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/Resources/XSOWin.ico -------------------------------------------------------------------------------- /Resources/XSOWinUpdater_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/Resources/XSOWinUpdater_Icon.ico -------------------------------------------------------------------------------- /Resources/XSOWin_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/Resources/XSOWin_Icon.png -------------------------------------------------------------------------------- /Updater/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/Updater/Config.cs -------------------------------------------------------------------------------- /Updater/GitHubApiResponseJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/Updater/GitHubApiResponseJson.cs -------------------------------------------------------------------------------- /Updater/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/Updater/Program.cs -------------------------------------------------------------------------------- /Updater/Updater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/Updater/Updater.csproj -------------------------------------------------------------------------------- /WindowsXSO.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/WindowsXSO.sln -------------------------------------------------------------------------------- /WindowsXSO.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/WindowsXSO.sln.DotSettings.user -------------------------------------------------------------------------------- /WindowsXSO/GitHubApiResponseJson/GitHubApiResponseJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/WindowsXSO/GitHubApiResponseJson/GitHubApiResponseJson.cs -------------------------------------------------------------------------------- /WindowsXSO/Language.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/WindowsXSO/Language.cs -------------------------------------------------------------------------------- /WindowsXSO/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/WindowsXSO/Program.cs -------------------------------------------------------------------------------- /WindowsXSO/Tools/Configuration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/WindowsXSO/Tools/Configuration.cs -------------------------------------------------------------------------------- /WindowsXSO/Tools/Minimizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/WindowsXSO/Tools/Minimizer.cs -------------------------------------------------------------------------------- /WindowsXSO/Tools/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/WindowsXSO/Tools/StringUtils.cs -------------------------------------------------------------------------------- /WindowsXSO/Updater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/WindowsXSO/Updater.cs -------------------------------------------------------------------------------- /WindowsXSO/WindowsXSO.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Minty-Labs/WindowsXSO/HEAD/WindowsXSO/WindowsXSO.csproj --------------------------------------------------------------------------------