0
0
Fork 0
mirror of https://git.do.srb2.org/STJr/UltimateZoneBuilder.git synced 2025-03-05 01:10:47 +00:00
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;
}
}
}