Skip to content

Commit 82bebde

Browse files
committed
Rename 'Checksums' to 'Checksum'
1 parent f203cf5 commit 82bebde

20 files changed

Lines changed: 26 additions & 26 deletions

File tree

Documentation/SharpZipLibCodeMap.dgml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<Node Id="@20" Category="CodeSchema_Method" Bounds="-77.9627935618881,299.111474363973,158.9,25.96" CodeSchemaProperty_IsConstructor="True" CodeSchemaProperty_IsPublic="True" CodeSchemaProperty_IsSpecialName="True" DelayedCrossGroupLinksState="Fetched" Label="SharpZipBaseException" />
1515
<Node Id="@4" Category="CodeSchema_Namespace" Bounds="-117.962793561888,51.2314743639732,238.9,313.84" DelayedChildNodesState="Fetched" DelayedCrossGroupLinksState="Fetched" FetchedChildrenCount="1" Group="Expanded" Label="ICSharpCode‎.SharpZipLib" UseManualLocation="True" />
1616
<Node Id="@5" Category="CodeSchema_Namespace" Bounds="-42.8530733784501,-3.74793082708365,224.186666666667,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ICSharpCode‎.SharpZipLib‎.BZip2" />
17-
<Node Id="@6" Category="CodeSchema_Namespace" Bounds="150.916974220182,106.252070497868,253.35,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ICSharpCode‎.SharpZipLib‎.Checksums" />
17+
<Node Id="@6" Category="CodeSchema_Namespace" Bounds="150.916974220182,106.252070497868,253.35,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ICSharpCode‎.SharpZipLib‎.Checksum" />
1818
<Node Id="@7" Category="CodeSchema_Namespace" Bounds="150.916958305734,51.2520702791685,218.943333333333,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ICSharpCode‎.SharpZipLib‎.Core" />
1919
<Node Id="@8" Category="CodeSchema_Namespace" Bounds="399.860395708063,51.2520702791684,250.263333333333,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ICSharpCode‎.SharpZipLib‎.Encryption" />
2020
<Node Id="@9" Category="CodeSchema_Namespace" Bounds="23.043182363015,-168.747931483184,219.07,25" DelayedChildNodesState="NotFetched" DelayedCrossGroupLinksState="Fetched" Group="Collapsed" Label="ICSharpCode‎.SharpZipLib‎.GZip" />
@@ -172,7 +172,7 @@
172172
<Alias n="3" Id="Namespace=ICSharpCode.SharpZipLib" />
173173
<Alias n="4" Id="(@1 @3)" />
174174
<Alias n="5" Id="(@1 Namespace=ICSharpCode.SharpZipLib.BZip2)" />
175-
<Alias n="6" Id="(@1 Namespace=ICSharpCode.SharpZipLib.Checksums)" />
175+
<Alias n="6" Id="(@1 Namespace=ICSharpCode.SharpZipLib.Checksum)" />
176176
<Alias n="7" Id="(@1 Namespace=ICSharpCode.SharpZipLib.Core)" />
177177
<Alias n="8" Id="(@1 Namespace=ICSharpCode.SharpZipLib.Encryption)" />
178178
<Alias n="9" Id="(@1 Namespace=ICSharpCode.SharpZipLib.GZip)" />
@@ -410,4 +410,4 @@
410410
<Path Id="0e7413ff-eb9e-4714-acf2-be3a6a7b2ffd.OutputPathUri" Value="file:///M:/Documents/Visual Studio 2015/Projects/icsharpcode/SharpZipLibBuild/bin/Debug/ICSharpCode.SharpZipLib.dll" />
411411
<Path Id="FxReferenceAssembliesUri" Value="file:///C:/Program Files (x86)/Reference Assemblies/Microsoft/Framework" />
412412
</Paths>
413-
</DirectedGraph>
413+
</DirectedGraph>

ICSharpCode.SharpZipLib.Samples/cs/Cmd_Checksum/Cmd_Checksum.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
using System;
2929
using System.IO;
3030

31-
using ICSharpCode.SharpZipLib.Checksums;
31+
using ICSharpCode.SharpZipLib.Checksum;
3232

3333
class Cmd_Crc
3434
{

ICSharpCode.SharpZipLib.Tests/Checksums/Crc32Tests.cs renamed to ICSharpCode.SharpZipLib.Tests/Checksum/Crc32Tests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using NUnit.Framework;
2-
using ICSharpCode.SharpZipLib.Checksums;
2+
using ICSharpCode.SharpZipLib.Checksum;
33
using System;
44

5-
namespace ICSharpCode.SharpZipLib.Checksums.Tests
5+
namespace ICSharpCode.SharpZipLib.Checksum.Tests
66
{
77
[TestFixture, Category("CRC32")]
88
public class Crc32Tests

ICSharpCode.SharpZipLib.Tests/ICSharpCode.SharpZipLib.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
<Compile Include="AssemblyInfo.cs" />
8989
<Compile Include="Base\InflaterDeflaterTests.cs" />
9090
<Compile Include="BZip2\Bzip2Tests.cs" />
91-
<Compile Include="Checksums\Crc32Tests.cs" />
91+
<Compile Include="Checksum\Crc32Tests.cs" />
9292
<Compile Include="Core\Core.cs" />
9393
<Compile Include="GZip\GZipTests.cs" />
9494
<Compile Include="Lzw\LzwTests.cs" />

ICSharpCode.SharpZipLib.Tests/Zip/ZipTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using System.Security;
66
using System.Text;
77
using System.Threading;
8-
using ICSharpCode.SharpZipLib.Checksums;
8+
using ICSharpCode.SharpZipLib.Checksum;
99
using ICSharpCode.SharpZipLib.Core;
1010
using ICSharpCode.SharpZipLib.Tests.TestSupport;
1111
using ICSharpCode.SharpZipLib.Zip;

ICSharpCode.SharpZipLib/BZip2/BZip2InputStream.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
using System;
3737
using System.IO;
3838

39-
using ICSharpCode.SharpZipLib.Checksums;
39+
using ICSharpCode.SharpZipLib.Checksum;
4040

4141
namespace ICSharpCode.SharpZipLib.BZip2
4242
{

ICSharpCode.SharpZipLib/BZip2/BZip2OutputStream.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
using System;
3737
using System.IO;
3838

39-
using ICSharpCode.SharpZipLib.Checksums;
39+
using ICSharpCode.SharpZipLib.Checksum;
4040

4141
namespace ICSharpCode.SharpZipLib.BZip2
4242
{

ICSharpCode.SharpZipLib/Checksums/Adler32.cs renamed to ICSharpCode.SharpZipLib/Checksum/Adler32.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
using System;
4040

41-
namespace ICSharpCode.SharpZipLib.Checksums
41+
namespace ICSharpCode.SharpZipLib.Checksum
4242
{
4343

4444
/// <summary>

ICSharpCode.SharpZipLib/Checksums/BZip2Crc.cs renamed to ICSharpCode.SharpZipLib/Checksum/BZip2Crc.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
using System;
4040

41-
namespace ICSharpCode.SharpZipLib.Checksums
41+
namespace ICSharpCode.SharpZipLib.Checksum
4242
{
4343
/// <summary>
4444
/// Bzip2 checksum algorithm

ICSharpCode.SharpZipLib/Checksums/Crc32.cs renamed to ICSharpCode.SharpZipLib/Checksum/Crc32.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
using System;
4040

41-
namespace ICSharpCode.SharpZipLib.Checksums
41+
namespace ICSharpCode.SharpZipLib.Checksum
4242
{
4343

4444
/// <summary>

0 commit comments

Comments
 (0)