mirror of
https://github.com/rvtr/ctr_test_tools.git
synced 2025-06-19 09:05:31 -04:00
TwlBkpCheck/Windows:Falsify... から TWLBackupBlock への参照を修正。
XML コメントがないとの警告がうっとおしいので無効にする(1591) git-svn-id: file:///Volumes/Transfer/gigaleak_20231201/2020-09-30%20-%20paladin.7z/paladin/ctr_test_tools@16 6b0af911-cb57-b745-895f-eec5701120e1
This commit is contained in:
parent
ed6fabc7d2
commit
afe9cd6daa
@ -41,15 +41,18 @@
|
|||||||
<Reference Include="Microsoft.CSharp" />
|
<Reference Include="Microsoft.CSharp" />
|
||||||
<Reference Include="System.Data" />
|
<Reference Include="System.Data" />
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
<Reference Include="TWLBackupBlock">
|
|
||||||
<HintPath>.\TWLBackupBlock.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Program.cs" />
|
<Compile Include="Program.cs" />
|
||||||
<Compile Include="Properties.cs" />
|
<Compile Include="Properties.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\TWLBackupBlock\TwlBackupBlock.csproj">
|
||||||
|
<Project>{E62F6169-868A-48E4-9B1D-C2EB3BE11F39}</Project>
|
||||||
|
<Name>TwlBackupBlock</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
Other similar extension points exist, see Microsoft.Common.targets.
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
Binary file not shown.
@ -117,7 +117,7 @@ namespace TwlBackupBlock
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// 現在のストリームから指定した配列にバイトを読み取り、ストリームの現在位置を指定した配列のバイト数だけ進めます。
|
/// 現在のストリームから指定した配列にバイトを読み取り、ストリームの現在位置を指定した配列のバイト数だけ進めます。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="value">データを読み取るバッファ</param>
|
/// <param name="buffer">データを読み取るバッファ</param>
|
||||||
public void Read(Byte[] buffer)
|
public void Read(Byte[] buffer)
|
||||||
{
|
{
|
||||||
br.Read(buffer, 0, buffer.Length);
|
br.Read(buffer, 0, buffer.Length);
|
||||||
@ -126,7 +126,7 @@ namespace TwlBackupBlock
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// 現在のストリームから指定した配列に4バイト符号なし整数を読み取り、ストリームの現在位置を指定した配列のバイト数だけ進めます。
|
/// 現在のストリームから指定した配列に4バイト符号なし整数を読み取り、ストリームの現在位置を指定した配列のバイト数だけ進めます。
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="value">データを読み取るバッファ</param>
|
/// <param name="buffer">データを読み取るバッファ</param>
|
||||||
public void Read(UInt32[] buffer)
|
public void Read(UInt32[] buffer)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < buffer.Length; i++)
|
for (int i = 0; i < buffer.Length; i++)
|
||||||
|
@ -16,6 +16,9 @@ namespace TwlBackupBlock
|
|||||||
public readonly byte[] header;
|
public readonly byte[] header;
|
||||||
public readonly byte[][] section;
|
public readonly byte[][] section;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// コンストラクタ。
|
||||||
|
/// </summary>
|
||||||
public TwlBackupHashSet()
|
public TwlBackupHashSet()
|
||||||
{
|
{
|
||||||
banner = new byte[HASH_SIZE];
|
banner = new byte[HASH_SIZE];
|
||||||
|
@ -27,6 +27,7 @@
|
|||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||||
<DocumentationFile>document.xml</DocumentationFile>
|
<DocumentationFile>document.xml</DocumentationFile>
|
||||||
|
<NoWarn>1591</NoWarn>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
<DebugType>pdbonly</DebugType>
|
<DebugType>pdbonly</DebugType>
|
||||||
|
@ -2,6 +2,9 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 11.00
|
Microsoft Visual Studio Solution File, Format Version 11.00
|
||||||
# Visual C# Express 2010
|
# Visual C# Express 2010
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FalsifyTwlBackup", "FalsifyTwlBackup\FalsifyTwlBackup.csproj", "{9DC0BCC2-4A60-4077-96CF-CDD92D32A55F}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FalsifyTwlBackup", "FalsifyTwlBackup\FalsifyTwlBackup.csproj", "{9DC0BCC2-4A60-4077-96CF-CDD92D32A55F}"
|
||||||
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
|
{E62F6169-868A-48E4-9B1D-C2EB3BE11F39} = {E62F6169-868A-48E4-9B1D-C2EB3BE11F39}
|
||||||
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TwlBackupBlock", "TWLBackupBlock\TwlBackupBlock.csproj", "{E62F6169-868A-48E4-9B1D-C2EB3BE11F39}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TwlBackupBlock", "TWLBackupBlock\TwlBackupBlock.csproj", "{E62F6169-868A-48E4-9B1D-C2EB3BE11F39}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Loading…
Reference in New Issue
Block a user