@@ -21,11 +21,6 @@ public static RunTestsOptions Parse(string[] args)
2121 description : "The test dll to run" )
2222 { Argument = new Argument < string > ( ) , Required = true } ,
2323
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-
2924 new Option (
3025 aliases : new string [ ] { "--runtime" } ,
3126 description : "The version of the runtime being used" )
@@ -70,7 +65,6 @@ public static RunTestsOptions Parse(string[] args)
7065 var parseResult = command . Parse ( args ) ;
7166 var options = new RunTestsOptions ( ) ;
7267 options . Target = parseResult . ValueForOption < string > ( "--target" ) ;
73- options . SdkVersion = parseResult . ValueForOption < string > ( "--sdk" ) ;
7468 options . RuntimeVersion = parseResult . ValueForOption < string > ( "--runtime" ) ;
7569 options . HelixQueue = parseResult . ValueForOption < string > ( "--queue" ) ;
7670 options . Architecture = parseResult . ValueForOption < string > ( "--arch" ) ;
@@ -86,7 +80,6 @@ public static RunTestsOptions Parse(string[] args)
8680 }
8781
8882 public string Target { get ; set ; }
89- public string SdkVersion { get ; set ; }
9083 public string RuntimeVersion { get ; set ; }
9184 public string AspNetRuntime { get ; set ; }
9285 public string AspNetRef { get ; set ; }
0 commit comments