Skip to content

Commit

Permalink
Labels in get-version should match variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
asherber committed Jul 24, 2019
1 parent 9880338 commit 039d462
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nbgv/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,8 @@ private static ExitCodes OnGetVersionCommand(string projectPath, string format,
Console.WriteLine("Version: {0}", oracle.Version);
Console.WriteLine("AssemblyVersion: {0}", oracle.AssemblyVersion);
Console.WriteLine("AssemblyInformationalVersion: {0}", oracle.AssemblyInformationalVersion);
Console.WriteLine("NuGet package Version: {0}", oracle.NuGetPackageVersion);
Console.WriteLine("NPM package Version: {0}", oracle.NpmPackageVersion);
Console.WriteLine("NuGetPackageVersion: {0}", oracle.NuGetPackageVersion);
Console.WriteLine("NpmPackageVersion: {0}", oracle.NpmPackageVersion);
break;
case "json":
var converters = new JsonConverter[]
Expand Down

0 comments on commit 039d462

Please sign in to comment.