Removing -- separator from dotnet publish task. Dotnet publish nor any other command uses -- as a paramater separator for msbuild params.
This commit is contained in:
parent
84730e31a6
commit
44ad9ec2c7
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ namespace Microsoft.DotNet.Cli.Build
|
|||
{
|
||||
if (!string.IsNullOrEmpty(MSBuildArgs))
|
||||
{
|
||||
return $"-- {MSBuildArgs}";
|
||||
return $"{MSBuildArgs}";
|
||||
}
|
||||
|
||||
return null;
|
||||
|
|
Loading…
Add table
Reference in a new issue