- using System.Diagnostics;
- using System.Reflection;
- namespace Ips.Library.Basic
- {
- public static class AssemblyExtensions
- {
- public static string GetFileVersion(this Assembly assembly)
- {
- return FileVersionInfo.GetVersionInfo(assembly.Location).FileVersion;
- }
- }
- }
|