Replacing the short form version of implicit msbuild parameters with longform ones.

This commit is contained in:
Livar Cunha 2018-04-02 15:14:32 -07:00
commit b1fca8c4d2
31 changed files with 173 additions and 161 deletions

View file

@ -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;