From 1df84ce0aec72f31fe7ef0eda921b25b4137b205 Mon Sep 17 00:00:00 2001 From: Dor Date: Mon, 10 Jun 2019 13:30:58 -0700 Subject: [PATCH] Rename members (#200) --- src/BuildScriptGeneratorCli/Commands/BuildCommand.cs | 12 ++++++------ .../Commands/BuildScriptCommand.cs | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/BuildScriptGeneratorCli/Commands/BuildCommand.cs b/src/BuildScriptGeneratorCli/Commands/BuildCommand.cs index 2eacdd2a81..0cb87651a9 100644 --- a/src/BuildScriptGeneratorCli/Commands/BuildCommand.cs +++ b/src/BuildScriptGeneratorCli/Commands/BuildCommand.cs @@ -47,14 +47,14 @@ internal class BuildCommand : CommandBase [Option( OptionTemplates.Platform, CommandOptionType.SingleValue, - Description = "The name of the programming language being used in the provided source directory.")] - public string Language { get; set; } + Description = "The name of the programming platform used in the provided source directory.")] + public string PlatformName { get; set; } [Option( OptionTemplates.PlatformVersion, CommandOptionType.SingleValue, - Description = "The version of programming language being used in the provided source directory.")] - public string LanguageVersion { get; set; } + Description = "The version of the programming platform used in the provided source directory.")] + public string PlatformVersion { get; set; } [Option( "-o|--output ", @@ -292,8 +292,8 @@ internal override void ConfigureBuildScriptGeneratorOptions(BuildScriptGenerator SourceDir, DestinationDir, IntermediateDir, - Language, - LanguageVersion, + PlatformName, + PlatformVersion, scriptOnly: false, Properties); } diff --git a/src/BuildScriptGeneratorCli/Commands/BuildScriptCommand.cs b/src/BuildScriptGeneratorCli/Commands/BuildScriptCommand.cs index df0364fcfa..cf3ca04ca2 100644 --- a/src/BuildScriptGeneratorCli/Commands/BuildScriptCommand.cs +++ b/src/BuildScriptGeneratorCli/Commands/BuildScriptCommand.cs @@ -22,14 +22,14 @@ internal class BuildScriptCommand : CommandBase [Option( OptionTemplates.Platform, CommandOptionType.SingleValue, - Description = "The name of the programming language being used in the provided source directory.")] - public string Language { get; set; } + Description = "The name of the programming platform used in the provided source directory.")] + public string PlatformName { get; set; } [Option( OptionTemplates.PlatformVersion, CommandOptionType.SingleValue, - Description = "The version of programming language being used in the provided source directory.")] - public string LanguageVersion { get; set; } + Description = "The version of the programming platform used in the provided source directory.")] + public string PlatformVersion { get; set; } [Option( OptionTemplates.Property, @@ -82,8 +82,8 @@ internal override void ConfigureBuildScriptGeneratorOptions(BuildScriptGenerator SourceDir, destinationDir: null, intermediateDir: null, - Language, - LanguageVersion, + PlatformName, + PlatformVersion, scriptOnly: true, Properties); }