-
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.
boolean option flags not working at all.
- Loading branch information
Showing
463 changed files
with
809 additions
and
551 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"C_Cpp_Runner.cCompilerPath": "C:\\ProgramData\\chocolatey\\bin\\gcc.exe", | ||
"C_Cpp_Runner.cppCompilerPath": "C:\\ProgramData\\chocolatey\\bin\\g++.exe" | ||
"C_Cpp_Runner.cppCompilerPath": "C:\\ProgramData\\chocolatey\\bin\\g++.exe", | ||
"git.ignoreLimitWarning": true | ||
} |
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
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,21 @@ | ||
using System; | ||
using System.Reflection; | ||
using System.CommandLine; | ||
using System.CommandLine.Invocation; | ||
|
||
namespace OxfordV2 | ||
{ | ||
public static class WithHandlerExtension | ||
{ | ||
public static Command WithHandler(this Command command, string name) | ||
{ | ||
var flags = BindingFlags.NonPublic | BindingFlags.Static; | ||
var method = typeof(Program).GetMethod(name, flags); | ||
|
||
// method! | ||
var handler = CommandHandler.Create(method!); | ||
command.Handler = handler; | ||
return command; | ||
} | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-8 Bytes
(100%)
bin/Release/net5.0/win10-x64/Microsoft.VisualBasic.Core.dll
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
-8 Bytes
(100%)
bin/Release/net5.0/win10-x64/Microsoft.Win32.Primitives.dll
Binary file not shown.
Binary file not shown.
Oops, something went wrong.