Rename publish --target to --manifest.

Fix #6244
This commit is contained in:
Eric Erhardt 2017-04-14 16:08:32 -05:00
parent d55ed34d2e
commit bfab25c259
4 changed files with 9 additions and 9 deletions

View file

@ -38,9 +38,9 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
return this;
}
public PublishCommand WithTargetManifest(string target)
public PublishCommand WithTargetManifest(string manifest)
{
_targetManifests.Add( $"--target {target}");
_targetManifests.Add( $"--manifest {manifest}");
return this;
}