mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 04:53:34 +00:00
Removed deprecated Task constructor
This commit is contained in:
parent
0517247bbc
commit
001608914b
1 changed files with 8 additions and 20 deletions
|
@ -109,26 +109,14 @@ export async function buildCargoTask(
|
||||||
exec = new vscode.ProcessExecution(fullCommand[0], fullCommand.slice(1), definition);
|
exec = new vscode.ProcessExecution(fullCommand[0], fullCommand.slice(1), definition);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (scope) {
|
return new vscode.Task(
|
||||||
return new vscode.Task(
|
definition,
|
||||||
definition,
|
scope ?? vscode.TaskScope.Workspace,
|
||||||
scope,
|
name,
|
||||||
name,
|
TASK_SOURCE,
|
||||||
TASK_SOURCE,
|
exec,
|
||||||
exec,
|
['$rustc']
|
||||||
['$rustc']
|
);
|
||||||
);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
// if the original task did not provide a scope retain the original lack of scope
|
|
||||||
return new vscode.Task(
|
|
||||||
definition,
|
|
||||||
name,
|
|
||||||
TASK_SOURCE,
|
|
||||||
exec,
|
|
||||||
['$rustc']
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export function activateTaskProvider(config: Config): vscode.Disposable {
|
export function activateTaskProvider(config: Config): vscode.Disposable {
|
||||||
|
|
Loading…
Reference in a new issue