Browse Source
Merge pull request #14208 from abpframework/EngincanV/cli
Fix DefaultDotNetProjectBuilder.cs for path with space
pull/14211/head
Engincan VESKE
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Build/DefaultDotNetProjectBuilder.cs
|
|
|
@ -76,7 +76,7 @@ public class DefaultDotNetProjectBuilder : IDotNetProjectBuilder, ITransientDepe |
|
|
|
Console.WriteLine("Executing...: dotnet build " + project.CsProjPath + " " + buildArguments); |
|
|
|
|
|
|
|
var output = CmdHelper.RunCmdAndGetOutput( |
|
|
|
"dotnet build " + project.CsProjPath + " " + buildArguments, |
|
|
|
"dotnet build \"" + project.CsProjPath + "\" " + buildArguments, |
|
|
|
out int buildStatus |
|
|
|
); |
|
|
|
|
|
|
|
|