| |||||||||||||||||
Source File | Conditionals | Statements | Methods | TOTAL | |||||||||||||
AssemblyInfo.cs | - | - | - | - |
|
1 | #region Copyright | |
2 | /* | |
3 | * Copyright 2005 the Seasar Foundation and the Others. | |
4 | * | |
5 | * Licensed under the Apache License, Version 2.0 (the "License"); | |
6 | * you may not use this file except in compliance with the License. | |
7 | * You may obtain a copy of the License at | |
8 | * | |
9 | * http://www.apache.org/licenses/LICENSE-2.0 | |
10 | * | |
11 | * Unless required by applicable law or agreed to in writing, software | |
12 | * distributed under the License is distributed on an "AS IS" BASIS, | |
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | |
14 | * either express or implied. See the License for the specific language | |
15 | * governing permissions and limitations under the License. | |
16 | */ | |
17 | #endregion | |
18 | ||
19 | using System.Reflection; | |
20 | using System.Runtime.CompilerServices; | |
21 | ||
22 | // | |
23 | // アセンブリに関する一般情報は以下の | |
24 | // 属性セットを通して制御されます。アセンブリに関連付けられている | |
25 | // 情報を変更するには、これらの属性値を変更してください。 | |
26 | // | |
27 | [assembly: AssemblyTitle("")] | |
28 | [assembly: AssemblyDescription("")] | |
29 | [assembly: AssemblyConfiguration("")] | |
30 | [assembly: AssemblyCompany("")] | |
31 | [assembly: AssemblyProduct("")] | |
32 | [assembly: AssemblyCopyright("")] | |
33 | [assembly: AssemblyTrademark("")] | |
34 | [assembly: AssemblyCulture("")] | |
35 | ||
36 | // | |
37 | // アセンブリのバージョン情報は、以下の 4 つの属性で構成されます : | |
38 | // | |
39 | // Major Version | |
40 | // Minor Version | |
41 | // Build Number | |
42 | // Revision | |
43 | // | |
44 | // 下にあるように、'*' を使って、すべての値を指定するか、 | |
45 | // ビルドおよびリビジョン番号を既定値にすることができます。 | |
46 | ||
47 | [assembly: AssemblyVersion("1.2.0.2")] | |
48 | ||
49 | // | |
50 | // アセンブリに署名するには、使用するキーを指定しなければなりません。 | |
51 | // アセンブリ署名に関する詳細については、Microsoft .NET Framework ドキュメントを参照してください。 | |
52 | // | |
53 | // 下記の属性を使って、署名に使うキーを制御します。 | |
54 | // | |
55 | // メモ : | |
56 | // (*) キーが指定されないと、アセンブリは署名されません。 | |
57 | // (*) KeyName は、コンピュータにインストールされている | |
58 | // 暗号サービス プロバイダ (CSP) のキーを表します。KeyFile は、 | |
59 | // キーを含むファイルです。 | |
60 | // (*) KeyFile および KeyName の値が共に指定されている場合は、 | |
61 | // 以下の処理が行われます : | |
62 | // (1) KeyName が CSP に見つかった場合、そのキーが使われます。 | |
63 | // (2) KeyName が存在せず、KeyFile が存在する場合、 | |
64 | // KeyFile にあるキーが CSP にインストールされ、使われます。 | |
65 | // (*) KeyFile を作成するには、sn.exe (厳密な名前) ユーティリティを使ってください。 | |
66 | // KeyFile を指定するとき、KeyFile の場所は、 | |
67 | // プロジェクト出力 ディレクトリへの相対パスでなければなりません。 | |
68 | // パスは、%Project Directory%\obj\<configuration> です。たとえば、KeyFile がプロジェクト ディレクトリにある場合、 | |
69 | // AssemblyKeyFile 属性を | |
70 | // [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] として指定します。 | |
71 | // (*) 遅延署名は高度なオプションです。 | |
72 | // 詳細については Microsoft .NET Framework ドキュメントを参照してください。 | |
73 | // | |
74 | [assembly: AssemblyDelaySign(false)] | |
75 | [assembly: AssemblyKeyName("")] | |
76 | [assembly: log4net.Config.XmlConfigurator(Watch=true)] | |
77 | [assembly: AssemblyFileVersionAttribute("1.2.0")] | |
78 |
|