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 996aaee commit 6ab5d4aCopy full SHA for 6ab5d4a
packages/dotnet/src/lib/core/dotnet.client.ts
@@ -115,6 +115,11 @@ export class DotNetClient {
115
return this.logAndExecute(cmd);
116
}
117
118
+ installTool(tool: string): Buffer {
119
+ const cmd = `${this.cliCommand.command} tool install ${tool}`;
120
+ return this.logAndExecute(cmd);
121
+ }
122
+
123
private logAndExecute(cmd: string): Buffer {
124
console.log(`Executing Command: ${cmd}`);
125
return execSync(cmd, { stdio: 'inherit' });
0 commit comments