-
Notifications
You must be signed in to change notification settings - Fork 2
Setup initial command skeleton #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
microlith57
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a couple wording changes but otherwise looks good!
Tholus.Console/Program.cs
Outdated
| System.Console.WriteLine($"TODO: Install Everest: '{name}' '{everestVersion}'"); | ||
| } | ||
|
|
||
| [Command("uninstall", Description = "Uninstalls Everest from an installation")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| [Command("uninstall", Description = "Uninstalls Everest from an installation")] | |
| [Command("uninstall", Description = "Uninstall Everest from an installation")] |
Tholus.Console/Program.cs
Outdated
| } | ||
|
|
||
| public void Run() | ||
| [Command("launch", Description = "Launches an installation")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| [Command("launch", Description = "Launches an installation")] | |
| [Command("launch", Description = "Launch an installation")] |
Tholus.Console/Program.cs
Outdated
| }); | ||
| } | ||
|
|
||
| [Command("add", Description = "Add an existing installation")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| [Command("add", Description = "Add an existing installation")] | |
| [Command("add", Description = "Add an existing installation to the list Tholus knows about")] |
Tholus.Console/Program.cs
Outdated
| System.Console.WriteLine($"TODO: Add new install: '{name}' '{path}'"); | ||
| } | ||
|
|
||
| [Command("remove", Description = "Remove an installation")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| [Command("remove", Description = "Remove an installation")] | |
| [Command("remove", Description = "Remove an installation from the list Tholus knows about")] |
Tholus.Console/Mods.cs
Outdated
| System.Console.WriteLine($"TODO: Create mod: '{install}' '{template}' '{mod}'"); | ||
| } | ||
|
|
||
| [Command("build", Description = "Builds a mod's code for an installation")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| [Command("build", Description = "Builds a mod's code for an installation")] | |
| [Command("build", Description = "Build a mod's source code")] |
Tholus.Console/ModBags.cs
Outdated
| System.Console.WriteLine($"TODO: Add new mod to bag: '{bag}' '{mod}'"); | ||
| } | ||
|
|
||
| [Command("remove", Description = "Removes a mod from the mod bag")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| [Command("remove", Description = "Removes a mod from the mod bag")] | |
| [Command("remove", Description = "Remove a mod from a bag")] |
Tholus.Console/ModBags.cs
Outdated
| System.Console.WriteLine($"TODO: Remove mod from bag: '{bag}' '{mod}'"); | ||
| } | ||
|
|
||
| [Command("list", Description = "Lists all mods of the mod bag")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| [Command("list", Description = "Lists all mods of the mod bag")] | |
| [Command("list", Description = "List the mods contained in a bag")] |
Tholus.Console/ModBags.cs
Outdated
| System.Console.WriteLine($"TODO: List mods of bag: '{bag}'"); | ||
| } | ||
|
|
||
| [Command("apply", Description = "Applies the mod bag to an installation")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| [Command("apply", Description = "Applies the mod bag to an installation")] | |
| [Command("apply", Description = "Apply a mod bag to an installation")] |
Tholus.Console/ModBags.cs
Outdated
| System.Console.WriteLine($"TODO: Apply bag: '{bag}' '{install}'"); | ||
| } | ||
|
|
||
| [Command("create", Description = "Creates a new empty mod bag")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| [Command("create", Description = "Creates a new empty mod bag")] | |
| [Command("create", Description = "Create a new empty mod bag")] |
Tholus.Console/ModBags.cs
Outdated
| System.Console.WriteLine($"TODO: Create bag: '{bag}'"); | ||
| } | ||
|
|
||
| [Command("destroy", Description = "Destroies an existing mod bag")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| [Command("destroy", Description = "Destroies an existing mod bag")] | |
| [Command("destroy", Description = "Destroy an existing mod bag")] |
No description provided.