Skip to content

Commit

Permalink
Rename members (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
dorfire authored Jun 10, 2019
1 parent 84feebd commit 1df84ce
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions src/BuildScriptGeneratorCli/Commands/BuildCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 <dir>",
Expand Down Expand Up @@ -292,8 +292,8 @@ internal override void ConfigureBuildScriptGeneratorOptions(BuildScriptGenerator
SourceDir,
DestinationDir,
IntermediateDir,
Language,
LanguageVersion,
PlatformName,
PlatformVersion,
scriptOnly: false,
Properties);
}
Expand Down
12 changes: 6 additions & 6 deletions src/BuildScriptGeneratorCli/Commands/BuildScriptCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -82,8 +82,8 @@ internal override void ConfigureBuildScriptGeneratorOptions(BuildScriptGenerator
SourceDir,
destinationDir: null,
intermediateDir: null,
Language,
LanguageVersion,
PlatformName,
PlatformVersion,
scriptOnly: true,
Properties);
}
Expand Down

0 comments on commit 1df84ce

Please sign in to comment.