12 lines
343 B
C#
12 lines
343 B
C#
using System.Reflection;
|
|
|
|
namespace OCSentinelCli;
|
|
|
|
internal static class BuildMetadata
|
|
{
|
|
public static string Version =>
|
|
Assembly.GetExecutingAssembly().GetCustomAttribute<AssemblyInformationalVersionAttribute>()?.InformationalVersion
|
|
?? Assembly.GetExecutingAssembly().GetName().Version?.ToString()
|
|
?? "0.0.0";
|
|
}
|