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:
parent
197a02807f
commit
110b30ccdc
22 changed files with 968 additions and 350 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue