Correct short git commit hash in version string to be at the beginning of the full hash, not the end

这个提交包含在:
Starbeamrainbowlabs 2016-05-25 12:06:17 +01:00
父节点 4bf87914ce
当前提交 ef3561c9ac
共有 1 个文件被更改,包括 1 次插入1 次删除

查看文件

@ -40,7 +40,7 @@ namespace SpritePacker
public static int Main(string[] args)
{
string commitHash = Utilities.GetEmbeddedResourceContent(commitHashFilename).Trim();
Version += "-" + commitHash.Substring(commitHash.Length - 7);
Version += "-" + commitHash.Substring(0, 7);
for(int i = 0; i < args.Length; i++)
{