Merge pull request #266 from Microsoft/version

Correct version lookup for ES autoincremented value
This commit is contained in:
Michael Niksa
2018-10-02 11:27:09 -07:00
committed by GitHub

View File

@@ -123,9 +123,9 @@ namespace ColorTool
static void Version()
{
string exePath = System.Reflection.Assembly.GetEntryAssembly().Location;
Version ver = AssemblyName.GetAssemblyName(exePath).Version;
Console.WriteLine("colortool v" + ver);
var assembly = System.Reflection.Assembly.GetExecutingAssembly();
var info = System.Diagnostics.FileVersionInfo.GetVersionInfo(assembly.Location);
Console.WriteLine($"colortool v{info.FileVersion}");
}
static void PrintTable()