Restore dotnet tool (#20106)
This commit is contained in:
Родитель
44183b3280
Коммит
55ad2d83e6
|
@ -54,6 +54,12 @@ Task("dotnet")
|
|||
.EnableBinaryLogger($"{GetLogDirectory()}/dotnet-{configuration}-{DateTime.UtcNow.ToFileTimeUtc()}.binlog")
|
||||
.SetConfiguration(configuration),
|
||||
});
|
||||
|
||||
DotNetTool("tool", new DotNetToolSettings {
|
||||
ToolPath = dotnetPath,
|
||||
DiagnosticOutput = true,
|
||||
ArgumentCustomization = args => args.Append("restore")
|
||||
});
|
||||
});
|
||||
|
||||
Task("dotnet-local-workloads")
|
||||
|
@ -81,6 +87,12 @@ Task("dotnet-local-workloads")
|
|||
.WithTarget("Install"),
|
||||
ToolPath = dotnetPath,
|
||||
});
|
||||
|
||||
DotNetTool("tool", new DotNetToolSettings {
|
||||
ToolPath = dotnetPath,
|
||||
DiagnosticOutput = true,
|
||||
ArgumentCustomization = args => args.Append("restore")
|
||||
});
|
||||
});
|
||||
|
||||
Task("dotnet-buildtasks")
|
||||
|
|
Загрузка…
Ссылка в новой задаче