GlobalAssemblyInfo.csというグローバルファイルとAssemblyInfo.csというローカルファイルを使用しています。グローバルファイルには、次の属性が含まれています。
[assembly: AssemblyProduct("Your Product Name")]
[assembly: AssemblyCompany("Your Company")]
[assembly: AssemblyCopyright("Copyright © 2008 ...")]
[assembly: AssemblyTrademark("Your Trademark - if applicable")]
#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
#else
[assembly: AssemblyConfiguration("Release")]
#endif
[assembly: AssemblyVersion("This is set by build process")]
[assembly: AssemblyFileVersion("This is set by build process")]
ローカルAssemblyInfo.csには、次の属性が含まれています。
[assembly: AssemblyTitle("Your assembly title")]
[assembly: AssemblyDescription("Your assembly description")]
[assembly: AssemblyCulture("The culture - if not neutral")]
[assembly: ComVisible(true/false)]
// unique id per assembly
[assembly: Guid("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")]
次の手順を使用して、GlobalAssemblyInfo.csを追加できます。
- プロジェクトのコンテキストメニューで[ 追加/既存のアイテム... ]を選択します
- GlobalAssemblyInfo.csを選択します
- 右側の小さな下向き矢印をクリックしてAdd-Buttonを展開します
- ボタンのドロップダウンリストで「リンクとして追加」を選択します