Skip to content

Instantly share code, notes, and snippets.

@jonpryor
Created June 13, 2012 13:29
Show Gist options
  • Save jonpryor/2924042 to your computer and use it in GitHub Desktop.
Save jonpryor/2924042 to your computer and use it in GitHub Desktop.
using System;
using System.Reflection;
[assembly: AssemblyVersion("2.2.*")]
class Test {
static void Main ()
{
Console.WriteLine ("Version: {0}",
Assembly.GetExecutingAssembly ().GetName ().Version);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment