@@ -21,11 +21,6 @@ public static RunTestsOptions Parse(string[] args)
21
21
description : "The test dll to run" )
22
22
{ Argument = new Argument < string > ( ) , Required = true } ,
23
23
24
- new Option (
25
- aliases : new string [ ] { "--sdk" } ,
26
- description : "The version of the sdk being used" )
27
- { Argument = new Argument < string > ( ) , Required = true } ,
28
-
29
24
new Option (
30
25
aliases : new string [ ] { "--runtime" } ,
31
26
description : "The version of the runtime being used" )
@@ -70,7 +65,6 @@ public static RunTestsOptions Parse(string[] args)
70
65
var parseResult = command . Parse ( args ) ;
71
66
var options = new RunTestsOptions ( ) ;
72
67
options . Target = parseResult . ValueForOption < string > ( "--target" ) ;
73
- options . SdkVersion = parseResult . ValueForOption < string > ( "--sdk" ) ;
74
68
options . RuntimeVersion = parseResult . ValueForOption < string > ( "--runtime" ) ;
75
69
options . HelixQueue = parseResult . ValueForOption < string > ( "--queue" ) ;
76
70
options . Architecture = parseResult . ValueForOption < string > ( "--arch" ) ;
@@ -86,7 +80,6 @@ public static RunTestsOptions Parse(string[] args)
86
80
}
87
81
88
82
public string Target { get ; set ; }
89
- public string SdkVersion { get ; set ; }
90
83
public string RuntimeVersion { get ; set ; }
91
84
public string AspNetRuntime { get ; set ; }
92
85
public string AspNetRef { get ; set ; }
0 commit comments