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