13 lines
344 B
C#
Executable File
13 lines
344 B
C#
Executable File
using System.Reflection;
|
|
|
|
namespace ThoughtWorks.CruiseControl.WebDashboard.IO
|
|
{
|
|
public class AssemblyVersionProvider : IVersionProvider
|
|
{
|
|
public string GetVersion()
|
|
{
|
|
Assembly assembly = Assembly.GetExecutingAssembly();
|
|
return assembly.GetName().Version.ToString();
|
|
}
|
|
}
|
|
} |