-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create a proper MSBuild ToolTask based VSTestTask (#680)
If the $(VSTestUseConsole) property is set to True during the build, the old console forwarding VSTestForwardTask is used.
- Loading branch information
Showing
11 changed files
with
619 additions
and
777 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
||
namespace Microsoft.TestPlatform.Build.Tasks | ||
{ | ||
|
||
using Microsoft.Build.Framework; | ||
using Microsoft.Build.Utilities; | ||
|
||
public interface ITestTask: | ||
ITask, | ||
ICancelableTask | ||
{ | ||
|
||
ITaskItem TestFileFullPath { get; set; } | ||
string VSTestSetting { get; set; } | ||
ITaskItem[] VSTestTestAdapterPath { get; set; } | ||
string VSTestFramework { get; set; } | ||
string VSTestPlatform { get; set; } | ||
string VSTestTestCaseFilter { get; set; } | ||
string[] VSTestLogger { get; set; } | ||
bool VSTestListTests { get; set; } | ||
string VSTestDiag { get; set; } | ||
string[] VSTestCLIRunSettings { get; set; } | ||
ITaskItem VSTestConsolePath { get; set; } | ||
ITaskItem VSTestResultsDirectory { get; set; } | ||
string VSTestVerbosity { get; set; } | ||
string[] VSTestCollect { get; set; } | ||
bool VSTestBlame { get; set; } | ||
bool VSTestBlameCrash { get; set; } | ||
string VSTestBlameCrashDumpType { get; set; } | ||
bool VSTestBlameCrashCollectAlways { get; set; } | ||
bool VSTestBlameHang { get; set; } | ||
string VSTestBlameHangDumpType { get; set; } | ||
string VSTestBlameHangTimeout { get; set; } | ||
ITaskItem VSTestTraceDataCollectorDirectoryPath { get; set; } | ||
bool VSTestNoLogo { get; set; } | ||
|
||
TaskLoggingHelper Log { get; } | ||
} | ||
} |
Oops, something went wrong.