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

@ -70,7 +70,7 @@ namespace Microsoft.DotNet.Tools
=> arguments.Any(a => IsExcludedFromRestore(a));
private static bool IsExcludedFromRestore(string argument)
=> argument.StartsWith("-p:TargetFramework=", StringComparison.Ordinal);
=> argument.StartsWith("-property:TargetFramework=", StringComparison.Ordinal);
public override int Execute()
{