Ignore bad restore sources (dotnet-watch tests) (#19893)

This commit is contained in:
Brennan 2020-03-16 12:59:50 -07:00 committed by GitHub
parent 3b3c714e43
commit 2a1cc04a32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ namespace Microsoft.DotNet.Watcher.Tools.FunctionalTests
public Task RestoreAsync(string project)
{
_logger?.WriteLine($"Restoring msbuild project in {project}");
return ExecuteCommandAsync(project, TimeSpan.FromSeconds(120), "restore");
return ExecuteCommandAsync(project, TimeSpan.FromSeconds(120), "restore", "--ignore-failed-sources");
}
public Task BuildAsync(string project)