├── .gitattributes ├── .gitignore ├── AutoUpdater.cs ├── AutoUpdater.csproj ├── AutoUpdater.sln ├── LICENSE ├── PluginConfig.cs ├── README.md ├── UpToDateCheck.cs └── lang ├── en.json └── pt-BR.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dran1x/CS2-AutoUpdater/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dran1x/CS2-AutoUpdater/HEAD/.gitignore -------------------------------------------------------------------------------- /AutoUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dran1x/CS2-AutoUpdater/HEAD/AutoUpdater.cs -------------------------------------------------------------------------------- /AutoUpdater.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dran1x/CS2-AutoUpdater/HEAD/AutoUpdater.csproj -------------------------------------------------------------------------------- /AutoUpdater.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dran1x/CS2-AutoUpdater/HEAD/AutoUpdater.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dran1x/CS2-AutoUpdater/HEAD/LICENSE -------------------------------------------------------------------------------- /PluginConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dran1x/CS2-AutoUpdater/HEAD/PluginConfig.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dran1x/CS2-AutoUpdater/HEAD/README.md -------------------------------------------------------------------------------- /UpToDateCheck.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dran1x/CS2-AutoUpdater/HEAD/UpToDateCheck.cs -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dran1x/CS2-AutoUpdater/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dran1x/CS2-AutoUpdater/HEAD/lang/pt-BR.json --------------------------------------------------------------------------------