diff options
| author | WitherOrNot | 2025-04-07 22:19:19 +0000 |
|---|---|---|
| committer | GitHub | 2025-04-07 22:19:19 +0000 |
| commit | 3a3ac06ca3715127475c7a2c7b3f0782e1690dfb (patch) | |
| tree | f83328728b259bb6ec1e52979322377df1c7d627 /TSforgeCLI/Program.cs | |
| parent | bdd201061daf7492fb116b86a54cd349c01fbb0a (diff) | |
| parent | 22bbb93e909154da94aee1b55e551038a3a37e6c (diff) | |
| download | TSforge-3a3ac06ca3715127475c7a2c7b3f0782e1690dfb.zip | |
Merge pull request #4 from massgravel/minor-fixups
Minor fixups
Diffstat (limited to 'TSforgeCLI/Program.cs')
| -rw-r--r-- | TSforgeCLI/Program.cs | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/TSforgeCLI/Program.cs b/TSforgeCLI/Program.cs index 7c1a50b..d7073fe 100644 --- a/TSforgeCLI/Program.cs +++ b/TSforgeCLI/Program.cs @@ -10,30 +10,30 @@ namespace TSforgeCLI { private class Options { - public bool Dump = false; + public bool Dump; public string DumpFilePath = "dump.dat"; - public string EncrFilePath = null; - public bool Load = false; + public string EncrFilePath; + public bool Load; public string LoadFilePath = "load.dat"; - public bool KMS4k = false; - public bool AVMA4k = false; - public bool ZCID = false; - public bool TimerReset = false; - public bool RearmReset = false; - public bool DeleteUniqueId = false; - public bool InstallGenPKey = false; - public bool KMSHostCharge = false; - public bool TamperedFlagsDelete = false; - public bool KeyChangeLockDelete = false; - public bool SetIIDParams = false; - public bool? Production = null; - public PSVersion? Version = null; + public bool KMS4k; + public bool AVMA4k; + public bool ZCID; + public bool TimerReset; + public bool RearmReset; + public bool DeleteUniqueId; + public bool InstallGenPKey; + public bool KMSHostCharge; + public bool TamperedFlagsDelete; + public bool KeyChangeLockDelete; + public bool SetIIDParams; + public bool? Production; + public PSVersion? Version; public Guid ActivationId = Guid.Empty; - public bool ShowHelp = false; - public PKeyAlgorithm? Algorithm = null; - public int Group = 0; - public int Serial = 0; - public ulong Security = 0; + public bool ShowHelp; + public PKeyAlgorithm? Algorithm; + public int Group; + public int Serial; + public ulong Security; } public static void Main(string[] args) |
