43 lines
1.9 KiB
C#
43 lines
1.9 KiB
C#
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
using System.Resources;
|
|
|
|
// アセンブリに関する一般情報は以下の属性セットをとおして制御されます。
|
|
// アセンブリに関連付けられている情報を変更するには、
|
|
// これらの属性値を変更してください。
|
|
[assembly: AssemblyTitle("OpenTaiko - A .tja file player.")]
|
|
[assembly: AssemblyDescription("")]
|
|
[assembly: AssemblyConfiguration("")]
|
|
[assembly: AssemblyCompany("")]
|
|
[assembly: AssemblyProduct("OpenTaiko")]
|
|
[assembly: AssemblyCopyright("")]
|
|
[assembly: AssemblyTrademark("")]
|
|
[assembly: AssemblyCulture("")]
|
|
|
|
// ComVisible を false に設定すると、その型はこのアセンブリ内で COM コンポーネントから
|
|
// 参照不可能になります。COM からこのアセンブリ内の型にアクセスする場合は、
|
|
// その型の ComVisible 属性を true に設定してください。
|
|
[assembly: ComVisible(false)]
|
|
|
|
// 次の GUID は、このプロジェクトが COM に公開される場合の、typelib の ID です
|
|
[assembly: Guid("ee05cb8c-73a8-41c3-8677-a0afbe7401f7")]
|
|
|
|
// アセンブリのバージョン情報は、以下の 4 つの値で構成されています:
|
|
//
|
|
// Major Version
|
|
// Minor Version
|
|
// Build Number
|
|
// Revision
|
|
//
|
|
// すべての値を指定するか、下のように '*' を使ってビルドおよびリビジョン番号を
|
|
// 既定値にすることができます:
|
|
// [assembly: AssemblyVersion("1.0.*")]
|
|
[assembly: AssemblyVersion("0.6.0")]
|
|
[assembly: AssemblyFileVersion("0.6.0")]
|
|
[assembly: NeutralResourcesLanguage("ja-JP")]
|
|
|
|
// このアセンブリは「ライブラリ」である(難読化ツールへの指示)。
|
|
// → デフォルトの true のままだと、アセンブリ public なメンバもすべて難読化されてしまう。
|
|
[assembly: ObfuscateAssembly( false )]
|