AssemblyExtensions.cs 314 B

123456789101112131415
  1. using System.Diagnostics;
  2. using System.Reflection;
  3. namespace Ips.Library.Basic
  4. {
  5. public static class AssemblyExtensions
  6. {
  7. public static string GetFileVersion(this Assembly assembly)
  8. {
  9. return FileVersionInfo.GetVersionInfo(assembly.Location).FileVersion;
  10. }
  11. }
  12. }