Skip to content

Commit

Permalink
Back out changes to ProjectBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
dellis1972 committed Nov 16, 2022
1 parent 31a5275 commit 4fb4ac1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Expand Up @@ -47,7 +47,7 @@ public class Builder : IDisposable
}
public TimeSpan LastBuildTime { get; protected set; }
public string BuildLogFile { get; set; }
public bool ThrowOnBuildFailure { get; set; } = true;
public bool ThrowOnBuildFailure { get; set; }
/// <summary>
/// True if NuGet restore occurs automatically (default)
/// </summary>
Expand Down
Expand Up @@ -14,6 +14,7 @@ public ProjectBuilder (string projectDirectory)
{
ProjectDirectory = projectDirectory;
Target = "Build";
ThrowOnBuildFailure = true;
BuildLogFile = "build.log";
}

Expand Down

0 comments on commit 4fb4ac1

Please sign in to comment.