@@ -14,7 +14,6 @@ public class Options
1414 public string ChecksumSasQueryString { get ; }
1515 public bool ComputeChecksums { get ; }
1616 public string DockerfileVersion { get ; }
17- public string ChannelName { get ; }
1817 public string Email { get ; }
1918 public string Password { get ; }
2019 public string GitHubProject => "dotnet-docker" ;
@@ -31,14 +30,13 @@ public class Options
3130 public bool UpdateOnly => Email == null || Password == null || User == null || TargetBranch == null ;
3231 public bool IsInternal => ! string . IsNullOrEmpty ( BinarySasQueryString ) || ! string . IsNullOrEmpty ( ChecksumSasQueryString ) ;
3332
34- public Options ( string dockerfileVersion , string [ ] productVersion , string channelName , string versionSourceName , string email , string password , string user ,
33+ public Options ( string dockerfileVersion , string [ ] productVersion , string versionSourceName , string email , string password , string user ,
3534 bool computeShas , bool stableBranding , string binarySas , string checksumSas , string sourceBranch , string targetBranch , string org , string project , string repo )
3635 {
3736 DockerfileVersion = dockerfileVersion ;
3837 ProductVersions = productVersion
3938 . Select ( pair => pair . Split ( new char [ ] { '=' } , 2 ) )
4039 . ToDictionary ( split => split [ 0 ] . ToLower ( ) , split => split . Skip ( 1 ) . FirstOrDefault ( ) ) ;
41- ChannelName = channelName ;
4240 VersionSourceName = versionSourceName ;
4341 Email = email ;
4442 Password = password ;
@@ -72,7 +70,6 @@ public static IEnumerable<Symbol> GetCliSymbols() =>
7270 {
7371 new Argument < string > ( "dockerfile-version" , "Version of the Dockerfiles to update" ) ,
7472 new Option < string [ ] > ( "--product-version" , "Product versions to update (<product-name>=<version>)" ) ,
75- new Option < string > ( "--channel-name" , "The name of the channel from which to find product files." ) ,
7673 new Option < string > ( "--version-source-name" , "The name of the source from which the version information was acquired." ) ,
7774 new Option < string > ( "--email" , "GitHub or AzDO email used to make PR (if not specified, a PR will not be created)" ) ,
7875 new Option < string > ( "--password" , "GitHub or AzDO password used to make PR (if not specified, a PR will not be created)" ) ,
0 commit comments