forked from mattpannella/pupdate
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
integrated RndMnkIII's analogizer settings wizard (mattpannella#386)
* ported code from https://github.com/RndMnkIII/AnalogizerConfigurator/blob/main/Program.cs * combined menu * updated readme * woops * woops again * Update AnalogizerSettingsService.cs * cli stuff * move the file automatically
- Loading branch information
1 parent
1f10f77
commit 1948740
Showing
7 changed files
with
560 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
using CommandLine; | ||
|
||
namespace Pannella.Options; | ||
|
||
[Verb("analogizer-setup", HelpText = "Set up Analogizer options")] | ||
public class AnalogizerSetupOptions : BaseOptions | ||
{ | ||
[Option ('j', "jotego", Required = false, HelpText = "Run the setup for Jotego's cores.")] | ||
public bool Jotego { get; set; } = false; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.