Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ public sealed class MicrosoftTestingPlatform : TestCommandDefinition, ICustomHel
Description = CommandDefinitionStrings.CommandOptionNoLaunchProfileArgumentsDescription
};

public readonly Option<string> ArtifactsPathOption = CommonOptions.CreateArtifactsPathOption();

public const string BuildTargetName = "_MTPBuild";

public readonly Option<string[]> MTPTargetOption = CommonOptions.CreateRequiredMSBuildTargetOption(BuildTargetName);
Expand All @@ -150,6 +152,7 @@ public MicrosoftTestingPlatform()
Options.Add(VerbosityOption);
Options.Add(NoRestoreOption);
Options.Add(NoBuildOption);
Options.Add(ArtifactsPathOption);
Options.Add(NoAnsiOption);
Options.Add(NoProgressOption);
Options.Add(OutputOption);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Options:
-v, -verbosity <LEVEL> Set the MSBuild verbosity level. Allowed values are q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic].
--no-restore Do not restore the project before building. [default: False]
--no-build Do not build the project before testing. Implies --no-restore. [default: False]
--artifacts-path <ARTIFACTS_DIR> The artifacts path. All output from the project, including build, publish, and pack output, will go in subfolders under the specified path.
--no-ansi Disable ANSI output. [default: False]
--no-progress Disable progress reporting. [default: False]
--output <Detailed|Normal> Verbosity of test output.
Expand Down
Loading