mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
18 lines
410 B
C#
18 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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|