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 を追加できます。
- プロジェクトのコンテキスト メニューでAdd/Existing Item...を選択します。
- GlobalAssemblyInfo.cs を選択します
- 右側の小さな下向き矢印をクリックして、追加ボタンを展開します
- ボタンのドロップダウンリストで「リンクとして追加」を選択します