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
commit bb795f5258
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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()