UltimateZoneBuilder/Source/Core/General/AssemblyHash.cs
MaxED be1e799688 Internal: Git commit hash is how shown in the About window.
Internal: Git commit hashes are now shown in the Update window changelog.
Internal: Exception window now links to GitHub Issue Tracker instead of zdoom.org GZDB thread.
2016-12-28 15:24:58 +03:00

17 lines
410 B
C#

using System;
//mxd. Attribute to store git short hash string
namespace CodeImp.DoomBuilder
{
[AttributeUsage(AttributeTargets.Assembly, Inherited = false)]
public class AssemblyHashAttribute : Attribute
{
private String commithash;
public String CommitHash { get { return commithash; } }
public AssemblyHashAttribute(String commithash)
{
this.commithash = commithash;
}
}
}