UltimateZoneBuilder/Source/Core/General/AssemblyHash.cs
2017-01-15 00:35:40 +02:00

17 lines
410 B
C#
Executable file

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;
}
}
}