Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions build-tools/automation/yaml-templates/variables.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,5 @@ variables:
value: true
- name: DOTNET_CLI_TELEMETRY_OPTOUT
value: true
- name: DOTNET_SKIP_FIRST_TIME_EXPERIENCE
value: true
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ protected override async Task<bool> Execute (Context context)
for (int attempt = 1; attempt <= maxAttempts; attempt++) {
var logPath = $"{logPathBase}-attempt{attempt}.binlog";
var runner = new ProcessRunner (Configurables.Paths.DotNetPreviewTool, "restore",
ProcessRunner.QuoteArgument (packageDownloadProj),
packageDownloadProj,
"--configfile", Path.Combine (BuildPaths.XamarinAndroidSourceRoot, "NuGet.config"),
ProcessRunner.QuoteArgument ($"-bl:{logPath}"),
$"-bl:{logPath}",
"--verbosity", "normal"
) {
EchoStandardOutput = true,
Expand Down