| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //************************************************************************
- // author: yuzhengyang
- // date: 2018.3.27 - 2018.6.3
- // desc: 工具描述
- // Copyright (c) yuzhengyang. All rights reserved.
- //************************************************************************
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Linq;
- using System.Text;
- namespace Azylee.Core.VersionUtils
- {
- public class VersionTool
- {
- public static Version Format(string s)
- {
- //解析最新版本号
- Version version = null;
- try
- {
- version = new Version(s);
- }
- catch (Exception e) { }
- return version;
- }
- public static Version GetVersion(string appFile)
- {
- try
- {
- FileVersionInfo fileVersionInfo = FileVersionInfo.GetVersionInfo(appFile);
- return Format(fileVersionInfo.FileVersion);
- }
- catch
- {
- return null;
- }
- }
- }
- }
|