Skip to content

Commit

Permalink
Fixed member case (#179)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dor authored May 31, 2019
1 parent 17564e6 commit af2f799
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ public partial class BuildScriptGeneratorContext
/// <summary>
/// Gets or sets the version of .NET Core used in the repo.
/// </summary>
public string DotnetCoreVersion { get; set; }
public string DotNetCoreVersion { get; set; }
}
}
4 changes: 2 additions & 2 deletions src/BuildScriptGenerator/DotNetCore/DotnetCorePlatform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public BuildScriptSnippet GenerateBashBuildScriptSnippet(BuildScriptGeneratorCon
ProjectFile = projectFile,
PublishDirectory = publishDir,
BuildProperties = buildProperties,
BenvArgs = $"dotnet={context.DotnetCoreVersion}",
BenvArgs = $"dotnet={context.DotNetCoreVersion}",
DirectoriesToExcludeFromCopyToIntermediateDir = GetDirectoriesToExcludeFromCopyToIntermediateDir(
context),
PreBuildCommand = preBuildCommand,
Expand Down Expand Up @@ -128,7 +128,7 @@ public void SetRequiredTools(

public void SetVersion(BuildScriptGeneratorContext context, string version)
{
context.DotnetCoreVersion = version;
context.DotNetCoreVersion = version;
}

public IEnumerable<string> GetDirectoriesToExcludeFromCopyToBuildOutputDir(
Expand Down

0 comments on commit af2f799

Please sign in to comment.