We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c822559 commit 2eeefcbCopy full SHA for 2eeefcb
src/SharpWebserver/ListenServer/InputHandler.cs
@@ -52,8 +52,16 @@ public static async Task HandleInputAsync()
52
("cache-clear", "Clear the page cache (for testing)"),
53
("ban", "Ban a client by IP address"),
54
("config-reload", "Reload the server config file(s)"),
55
+ ("references", "Show all reference assemblies in use")
56
]);
57
break;
58
+ case "references":
59
+ Logger.LogInfo("Reference Assemblies");
60
+ foreach (string item in Utilities.ReferenceAssemblies)
61
+ {
62
+ Console.WriteLine(" -> " + item);
63
+ }
64
+ break;
65
case "exit":
66
ExitNow = true;
67
0 commit comments