-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
1,012 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -572,3 +572,4 @@ dpSymbol* dpSymbolTable::findSymbolByAddress( void *addr ) | |
} | ||
return nullptr; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
|
||
// | ||
// アセンブリに関する一般情報は以下の属性セットをとおして制御されます。 | ||
// アセンブリに関連付けられている情報を変更するには、 | ||
// これらの属性値を変更してください。 | ||
// | ||
[assembly: AssemblyTitle("")] | ||
[assembly: AssemblyDescription("")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyProduct("")] | ||
[assembly: AssemblyCopyright("")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
|
||
// | ||
// アセンブリのバージョン情報は、以下の 4 つの値で構成されています: | ||
// | ||
// Major Version | ||
// Minor Version | ||
// Revision | ||
// Build Number | ||
// | ||
// すべての値を指定するか、下のように '*' を使ってリビジョンおよびビルド番号を | ||
// 既定値にすることができます: | ||
|
||
[assembly: AssemblyVersion("1.0.*")] | ||
|
||
// | ||
// アセンブリに署名するには、使用するキーを指定しなければなりません。アセンブリ署名に関する | ||
// 詳細については、Microsoft .NET Framework ドキュメントを参照してください。 | ||
// | ||
// 下の属性を使用して、署名に使用されるキーを制御します。 | ||
// | ||
// メモ: | ||
// (*) キーが指定されないと、アセンブリは署名されません。 | ||
// (*) KeyName は、コンピューターにインストールされている暗号サービス プロバイダー (CSP) を | ||
// 表します。 | ||
// (*) キー ファイルおよびキー名の属性が共に指定されている場合は、 | ||
// 以下の処理が行われます: | ||
// (1) KeyName が CSP に見つかった場合、そのキーが使われます。 | ||
// (2) KeyName が存在せず、KeyFile が存在する場合、 | ||
// ファイルにあるキーが CSP にインストールされ、使われます。 | ||
// (*) 遅延署名は高度なオプションです - Microsoft .NET Framework | ||
// ドキュメントを参照してください。 | ||
// | ||
[assembly: AssemblyDelaySign(false)] | ||
[assembly: AssemblyKeyFile("")] | ||
[assembly: AssemblyKeyName("")] |
Oops, something went wrong.