Extract build from compile

Build becomes the new compile. It decides which project to compile and how. It checks for incremental preconditions
Compile's resonsibility is trimmed down to only knowing how to invoke the compiler on a project
This commit is contained in:
Mihai Codoban 2015-12-10 13:06:33 -08:00
parent 197a02807f
commit 110b30ccdc
22 changed files with 968 additions and 350 deletions

View file

@ -101,7 +101,7 @@ namespace Microsoft.DotNet.Tools.Compiler
argsBuilder.Append($" \"{path}\"");
var result = Command.Create("dotnet-compile", argsBuilder.ToString())
var result = Command.Create("dotnet-build", argsBuilder.ToString())
.ForwardStdOut()
.ForwardStdErr()
.Execute();