Fixed a few issues around bootstrapping
- Work aronud coreconsole issue in the bootstrap.cmd - Use msbuild 14 roslyn csc until we have it - Remove quoting args when building project refs, it wasn't working - Fixed logic that launched exe's directly
This commit is contained in:
parent
cbb8414b16
commit
64f539e100
4 changed files with 12 additions and 20 deletions
|
@ -82,7 +82,7 @@ namespace Microsoft.DotNet.Tools.Compiler
|
|||
var projectDependency = dependency.Library as ProjectDescription;
|
||||
if (projectDependency != null && !string.Equals(projectDependency.Identity.Name, context.RootProject.Identity.Name, StringComparison.Ordinal))
|
||||
{
|
||||
var compileResult = Command.Create("dotnet-compile", $"--framework \"{projectDependency.Framework}\" --configuration \"{configuration}\" {projectDependency.Project.ProjectDirectory}")
|
||||
var compileResult = Command.Create("dotnet-compile", $"--framework {projectDependency.Framework} --configuration {configuration} {projectDependency.Project.ProjectDirectory}")
|
||||
.ForwardStdOut()
|
||||
.ForwardStdErr()
|
||||
.RunAsync()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue