使用FileVersionInfo获取版本信息
FileVersionInfo info = FileVersionInfo.GetVersionInfo(Application.Current.StartupUri + "ICC2.0.exe");
string productName = info.ProductName;
string productVersion = info.ProductVersion;
string companyName = info.CompanyName;
string legalCopyright = info.LegalCopyright;
FileVersionInfo相关属性
https://msdn.microsoft.com/en-us/library/system.diagnostics.fileversioninfo(v=vs.110).aspx
Name | Description | |
---|---|---|
Comments | Gets the comments associated with the file. | |
CompanyName | Gets the name of the company that produced the file. | |
FileBuildPart | Gets the build number of the file. | |
FileDescription | Gets the description of the file. | |
FileMajorPart | Gets the major part of the version number. | |
FileMinorPart | Gets the minor part of the version number of the file. | |
FileName | Gets the name of the file that this instance of FileVersionInfo describes. | |
FilePrivatePart | Gets the file private part number. | |
FileVersion | Gets the file version number. | |
InternalName | Gets the internal name of the file, if one exists. | |
IsDebug | Gets a value that specifies whether the file contains debugging information or is compiled with debugging features enabled. | |
IsPatched | Gets a value that specifies whether the file has been modified and is not identical to the original shipping file of the same version number. | |
IsPreRelease | Gets a value that specifies whether the file is a development version, rather than a commercially released product. | |
IsPrivateBuild | Gets a value that specifies whether the file was built using standard release procedures. | |
IsSpecialBuild | Gets a value that specifies whether the file is a special build. | |
Language | Gets the default language string for the version info block. | |
LegalCopyright | Gets all copyright notices that apply to the specified file. | |
LegalTrademarks | Gets the trademarks and registered trademarks that apply to the file. | |
OriginalFilename | Gets the name the file was created with. | |
PrivateBuild | Gets information about a private version of the file. | |
ProductBuildPart | Gets the build number of the product this file is associated with. | |
ProductMajorPart | Gets the major part of the version number for the product this file is associated with. | |
ProductMinorPart | Gets the minor part of the version number for the product the file is associated with. | |
ProductName | Gets the name of the product this file is distributed with. | |
ProductPrivatePart | Gets the private part number of the product this file is associated with. | |
ProductVersion | Gets the version of the product this file is distributed with. | |
SpecialBuild | Gets the special build information for the file. |