Replacing the short form version of implicit msbuild parameters with longform ones.
This commit is contained in:
parent
10289504a8
commit
b1fca8c4d2
31 changed files with 173 additions and 161 deletions
|
|
@ -71,7 +71,7 @@ namespace Microsoft.DotNet.Cli.Build
|
|||
{
|
||||
if (SkipInvalidConfigurations)
|
||||
{
|
||||
return "-p:SkipInvalidConfigurations=true";
|
||||
return "-property:SkipInvalidConfigurations=true";
|
||||
}
|
||||
|
||||
return null;
|
||||
|
|
@ -81,7 +81,7 @@ namespace Microsoft.DotNet.Cli.Build
|
|||
{
|
||||
if (!string.IsNullOrEmpty(Runtime))
|
||||
{
|
||||
return $"-p:RuntimeIdentifier={Runtime}";
|
||||
return $"-property:RuntimeIdentifier={Runtime}";
|
||||
}
|
||||
|
||||
return null;
|
||||
|
|
|
|||
Reference in a new issue