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")
|
.EnableBinaryLogger($"{GetLogDirectory()}/dotnet-{configuration}-{DateTime.UtcNow.ToFileTimeUtc()}.binlog")
|
||||||
.SetConfiguration(configuration),
|
.SetConfiguration(configuration),
|
||||||
});
|
});
|
||||||
|
|
||||||
|
DotNetTool("tool", new DotNetToolSettings {
|
||||||
|
ToolPath = dotnetPath,
|
||||||
|
DiagnosticOutput = true,
|
||||||
|
ArgumentCustomization = args => args.Append("restore")
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
Task("dotnet-local-workloads")
|
Task("dotnet-local-workloads")
|
||||||
|
@ -81,6 +87,12 @@ Task("dotnet-local-workloads")
|
||||||
.WithTarget("Install"),
|
.WithTarget("Install"),
|
||||||
ToolPath = dotnetPath,
|
ToolPath = dotnetPath,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
DotNetTool("tool", new DotNetToolSettings {
|
||||||
|
ToolPath = dotnetPath,
|
||||||
|
DiagnosticOutput = true,
|
||||||
|
ArgumentCustomization = args => args.Append("restore")
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
Task("dotnet-buildtasks")
|
Task("dotnet-buildtasks")
|
||||||
|
|
Загрузка…
Ссылка в новой задаче