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
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ public BuildProject (Func<string> msbuildPath, IProcessManager processManager, I

public bool RestoreNugets {
get {
if (TestProject.IsDotNetProject)
return false;
return TestProject.RestoreNugetsInProject || !string.IsNullOrEmpty (SolutionPath);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class TestProject
public string [] Configurations;
public Func<Task> Dependency;
public string FailureMessage;
public bool RestoreNugetsInProject;
public bool RestoreNugetsInProject = true;
public string MTouchExtraArgs;
public double TimeoutMultiplier = 1;

Expand Down