mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 12:22:35 +00:00
17 lines
410 B
C#
Executable file
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;
|
|
}
|
|
}
|
|
}
|