@@ -15,11 +15,6 @@ public class RunVSTestTask : ToolTask
15
15
private static readonly HashSet < string > NormalTestLogging = new ( new [ ] { "n" , "normal" , "d" , "detailed" , "diag" , "diagnostic" } , StringComparer . OrdinalIgnoreCase ) ;
16
16
private static readonly HashSet < string > QuietTestLogging = new ( new [ ] { "q" , "quiet" } , StringComparer . OrdinalIgnoreCase ) ;
17
17
18
- /// <summary>
19
- /// Gets or Sets Full path to the test file.
20
- /// </summary>
21
- public string IsTestProject { get ; set ; }
22
-
23
18
/// <summary>
24
19
/// Gets or Sets Full path to the test file.
25
20
/// </summary>
@@ -65,19 +60,6 @@ public class RunVSTestTask : ToolTask
65
60
/// </summary>
66
61
public string VSTestDiag { get ; set ; }
67
62
68
- /// <summary>
69
- /// Gets or Sets Command line options for VSTest.
70
- /// </summary>
71
- public string [ ] VSTestCLIRunSettings { get ; set ; }
72
-
73
- // Initialized to empty string to allow declaring as non-nullable, the property is marked as
74
- // required so we can ensure that the property is set to non-null before the task is executed.
75
-
76
- /// <summary>
77
- /// Gets or Sets Path to VSTest console executable.
78
- /// </summary>
79
- public string VSTestConsolePath { get ; set ; } = string . Empty ;
80
-
81
63
/// <summary>
82
64
/// Gets or Sets Directory where VSTest results are saved.
83
65
/// </summary>
@@ -148,12 +130,6 @@ public class RunVSTestTask : ToolTask
148
130
/// </summary>
149
131
public string VSTestSessionCorrelationId { get ; set ; }
150
132
151
- /// <summary>
152
- /// Gets or Sets Runner version of VSTest.
153
- /// </summary>
154
- [ Required ]
155
- public string VSTestRunnerVersion { get ; set ; }
156
-
157
133
protected override string ToolName => "vstest.console.exe" ;
158
134
159
135
protected override MessageImportance StandardOutputLoggingImportance => MessageImportance . High ;
0 commit comments