You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/CodeQLToolkit.Features/CodeQL/Commands/CodeQLCommandFeature.cs
+13-8Lines changed: 13 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -39,26 +39,31 @@ public void Register(Command parentCommand)
39
39
parentCommand.Add(runCommand);
40
40
41
41
varinstallCommand=newCommand("install","Installs CodeQL (bundle or release distribution) locally.");
42
-
//var useCommand = new Command("use", "Switches tooling to use a different CodeQL version and updates the paths accordingly.");
43
-
//var listCommand = new Command("list", "Lists versions of CodeQL available locally.");
42
+
varcustomBundleOption=newOption<bool>("--custom-bundle",()=>false,"Build a custom bundle and compile the bundle."){IsRequired=true};
43
+
varquickBundleOption=newOption<bool>("--quick-bundle",()=>false,"Build a custom bundle and DO NOT compile the bundle."){IsRequired=true};
44
+
varpacksOption=newOption<string[]>("--packs","When creating bundles, this specifies the packs to include, Example `pack1 pack2 pack3`. You may specify also as `--pack pack1 --pack2 --pack3`"){IsRequired=false,AllowMultipleArgumentsPerToken=true};
0 commit comments