├── .gitattributes ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .sonarlint ├── FASTER.slconfig └── faster_appcsharp.ruleset ├── FASTER Maintenance ├── App.config ├── FASTER Maintenance.csproj ├── Models │ ├── 16Models.cs │ ├── 17Models.cs │ ├── Arma3Profile.cs │ ├── BasicCfg.cs │ ├── Functions.cs │ ├── LocalMod.cs │ ├── ServerCfg.cs │ ├── ServerProfile.cs │ └── SteamMod.cs ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ └── app.manifest ├── FASTER.sln ├── FASTER ├── App.config ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── FASTER.csproj ├── FASTERKey.snk ├── GlobalSuppressions.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Models │ ├── Arma3Profile.cs │ ├── BasicCfg.cs │ ├── Converters.cs │ ├── Encryption.cs │ ├── Functions.cs │ ├── LocalMod.cs │ ├── ServerCfg.cs │ ├── ServerProfile.cs │ ├── StaticData.cs │ ├── SteamMod.cs │ └── SteamWebApi.cs ├── Properties │ ├── FASTER.manifest │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── FASTER.ico │ └── FasterSplash.png ├── ViewModel │ └── ProfileViewModel.cs └── Views │ ├── About.xaml │ ├── About.xaml.cs │ ├── LocalMods.xaml │ ├── LocalMods.xaml.cs │ ├── Profile.xaml │ ├── Profile.xaml.cs │ ├── ServerStatus.xaml │ ├── ServerStatus.xaml.cs │ ├── Settings.xaml │ ├── Settings.xaml.cs │ ├── Setup.xaml │ ├── Setup.xaml.cs │ ├── SteamMods.xaml │ ├── SteamMods.xaml.cs │ ├── SteamUpdater.xaml │ └── SteamUpdater.xaml.cs ├── FASTERTests ├── FASTERTests.csproj ├── SteamModTests.cs └── SteamWebApiTests.cs ├── FASTER_Version.xml ├── LICENSE ├── README.md └── azure-pipelines.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/.gitignore -------------------------------------------------------------------------------- /.sonarlint/FASTER.slconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/.sonarlint/FASTER.slconfig -------------------------------------------------------------------------------- /.sonarlint/faster_appcsharp.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/.sonarlint/faster_appcsharp.ruleset -------------------------------------------------------------------------------- /FASTER Maintenance/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER Maintenance/App.config -------------------------------------------------------------------------------- /FASTER Maintenance/FASTER Maintenance.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER Maintenance/FASTER Maintenance.csproj -------------------------------------------------------------------------------- /FASTER Maintenance/Models/16Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER Maintenance/Models/16Models.cs -------------------------------------------------------------------------------- /FASTER Maintenance/Models/17Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER Maintenance/Models/17Models.cs -------------------------------------------------------------------------------- /FASTER Maintenance/Models/Arma3Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER Maintenance/Models/Arma3Profile.cs -------------------------------------------------------------------------------- /FASTER Maintenance/Models/BasicCfg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER Maintenance/Models/BasicCfg.cs -------------------------------------------------------------------------------- /FASTER Maintenance/Models/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER Maintenance/Models/Functions.cs -------------------------------------------------------------------------------- /FASTER Maintenance/Models/LocalMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER Maintenance/Models/LocalMod.cs -------------------------------------------------------------------------------- /FASTER Maintenance/Models/ServerCfg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER Maintenance/Models/ServerCfg.cs -------------------------------------------------------------------------------- /FASTER Maintenance/Models/ServerProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER Maintenance/Models/ServerProfile.cs -------------------------------------------------------------------------------- /FASTER Maintenance/Models/SteamMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER Maintenance/Models/SteamMod.cs -------------------------------------------------------------------------------- /FASTER Maintenance/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER Maintenance/Program.cs -------------------------------------------------------------------------------- /FASTER Maintenance/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER Maintenance/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FASTER Maintenance/Properties/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER Maintenance/Properties/app.manifest -------------------------------------------------------------------------------- /FASTER.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER.sln -------------------------------------------------------------------------------- /FASTER/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/App.config -------------------------------------------------------------------------------- /FASTER/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/App.xaml -------------------------------------------------------------------------------- /FASTER/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/App.xaml.cs -------------------------------------------------------------------------------- /FASTER/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/AssemblyInfo.cs -------------------------------------------------------------------------------- /FASTER/FASTER.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/FASTER.csproj -------------------------------------------------------------------------------- /FASTER/FASTERKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/FASTERKey.snk -------------------------------------------------------------------------------- /FASTER/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/GlobalSuppressions.cs -------------------------------------------------------------------------------- /FASTER/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/MainWindow.xaml -------------------------------------------------------------------------------- /FASTER/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/MainWindow.xaml.cs -------------------------------------------------------------------------------- /FASTER/Models/Arma3Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Models/Arma3Profile.cs -------------------------------------------------------------------------------- /FASTER/Models/BasicCfg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Models/BasicCfg.cs -------------------------------------------------------------------------------- /FASTER/Models/Converters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Models/Converters.cs -------------------------------------------------------------------------------- /FASTER/Models/Encryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Models/Encryption.cs -------------------------------------------------------------------------------- /FASTER/Models/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Models/Functions.cs -------------------------------------------------------------------------------- /FASTER/Models/LocalMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Models/LocalMod.cs -------------------------------------------------------------------------------- /FASTER/Models/ServerCfg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Models/ServerCfg.cs -------------------------------------------------------------------------------- /FASTER/Models/ServerProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Models/ServerProfile.cs -------------------------------------------------------------------------------- /FASTER/Models/StaticData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Models/StaticData.cs -------------------------------------------------------------------------------- /FASTER/Models/SteamMod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Models/SteamMod.cs -------------------------------------------------------------------------------- /FASTER/Models/SteamWebApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Models/SteamWebApi.cs -------------------------------------------------------------------------------- /FASTER/Properties/FASTER.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Properties/FASTER.manifest -------------------------------------------------------------------------------- /FASTER/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /FASTER/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Properties/Settings.settings -------------------------------------------------------------------------------- /FASTER/Resources/FASTER.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Resources/FASTER.ico -------------------------------------------------------------------------------- /FASTER/Resources/FasterSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Resources/FasterSplash.png -------------------------------------------------------------------------------- /FASTER/ViewModel/ProfileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/ViewModel/ProfileViewModel.cs -------------------------------------------------------------------------------- /FASTER/Views/About.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Views/About.xaml -------------------------------------------------------------------------------- /FASTER/Views/About.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Views/About.xaml.cs -------------------------------------------------------------------------------- /FASTER/Views/LocalMods.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Views/LocalMods.xaml -------------------------------------------------------------------------------- /FASTER/Views/LocalMods.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Views/LocalMods.xaml.cs -------------------------------------------------------------------------------- /FASTER/Views/Profile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Views/Profile.xaml -------------------------------------------------------------------------------- /FASTER/Views/Profile.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Views/Profile.xaml.cs -------------------------------------------------------------------------------- /FASTER/Views/ServerStatus.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Views/ServerStatus.xaml -------------------------------------------------------------------------------- /FASTER/Views/ServerStatus.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Views/ServerStatus.xaml.cs -------------------------------------------------------------------------------- /FASTER/Views/Settings.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Views/Settings.xaml -------------------------------------------------------------------------------- /FASTER/Views/Settings.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Views/Settings.xaml.cs -------------------------------------------------------------------------------- /FASTER/Views/Setup.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Views/Setup.xaml -------------------------------------------------------------------------------- /FASTER/Views/Setup.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Views/Setup.xaml.cs -------------------------------------------------------------------------------- /FASTER/Views/SteamMods.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Views/SteamMods.xaml -------------------------------------------------------------------------------- /FASTER/Views/SteamMods.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Views/SteamMods.xaml.cs -------------------------------------------------------------------------------- /FASTER/Views/SteamUpdater.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Views/SteamUpdater.xaml -------------------------------------------------------------------------------- /FASTER/Views/SteamUpdater.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER/Views/SteamUpdater.xaml.cs -------------------------------------------------------------------------------- /FASTERTests/FASTERTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTERTests/FASTERTests.csproj -------------------------------------------------------------------------------- /FASTERTests/SteamModTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTERTests/SteamModTests.cs -------------------------------------------------------------------------------- /FASTERTests/SteamWebApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTERTests/SteamWebApiTests.cs -------------------------------------------------------------------------------- /FASTER_Version.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/FASTER_Version.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Foxlider/Fox-s-Arma-Server-Tool-Extended-Rewrite/HEAD/azure-pipelines.yml --------------------------------------------------------------------------------