31 lines
978 B
C#
31 lines
978 B
C#
using System;
|
|
using System.Reflection;
|
|
using System.Runtime.InteropServices;
|
|
|
|
// 一般的組件資訊是由下列這組屬性所控制。
|
|
// 變更這些屬性的值即可修改組件的相關資訊。
|
|
// 檢閱組件屬性的值
|
|
|
|
[assembly: AssemblyTitle("MESws")]
|
|
[assembly: AssemblyDescription("MESws for MESSeries")]
|
|
[assembly: AssemblyCompany("iMES Technology Inc.")]
|
|
[assembly: AssemblyProduct("MESSeries 6")]
|
|
[assembly: AssemblyCopyright("Copyright © iMES Technology Inc.")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: ComVisible(false)]
|
|
|
|
// 下列 GUID 為專案公開 (Expose) 至 COM 時所要使用的 typelib ID
|
|
[assembly: Guid("225BED8B-F97A-4177-956A-445E2C61B05A")]
|
|
|
|
// 組件的版本資訊由下列四個值所組成:
|
|
//
|
|
// 主要版本
|
|
// 次要版本
|
|
// 組建編號
|
|
// 修訂
|
|
//
|
|
// 您可以自行指定所有的值,也可以依照以下的方式,使用 '*' 將修訂和組建編號
|
|
// 指定為預設值:
|
|
|
|
[assembly: AssemblyVersion("6.0.3.1")]
|