Created
September 3, 2011 10:52
-
-
Save painejake/1191002 to your computer and use it in GitHub Desktop.
Git Revision with .NET and C#
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[AttributeUsage(AttributeTargets.Assembly)] | |
public class AssemblyGitBuild : Attribute | |
{ | |
public string gitBuild { get; private set; } | |
public AssemblyGitBuild(string txt) { gitBuild = txt; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment