mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Move DedupeType to better namespace
This commit is contained in:
@@ -5,27 +5,6 @@ namespace SabreTools.Core
|
|||||||
{
|
{
|
||||||
#region DatFiles
|
#region DatFiles
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Determines the DAT deduplication type
|
|
||||||
/// </summary>
|
|
||||||
public enum DedupeType
|
|
||||||
{
|
|
||||||
None = 0,
|
|
||||||
Full,
|
|
||||||
|
|
||||||
// Force only deduping with certain types
|
|
||||||
Game,
|
|
||||||
CRC,
|
|
||||||
MD5,
|
|
||||||
#if NET_FRAMEWORK
|
|
||||||
RIPEMD160,
|
|
||||||
#endif
|
|
||||||
SHA1,
|
|
||||||
SHA256,
|
|
||||||
SHA384,
|
|
||||||
SHA512,
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Available hashing types
|
/// Available hashing types
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|||||||
@@ -159,4 +159,25 @@ namespace SabreTools.DatFiles
|
|||||||
// Specialty combinations
|
// Specialty combinations
|
||||||
ALL = Int32.MaxValue,
|
ALL = Int32.MaxValue,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Determines the DAT deduplication type
|
||||||
|
/// </summary>
|
||||||
|
public enum DedupeType
|
||||||
|
{
|
||||||
|
None = 0,
|
||||||
|
Full,
|
||||||
|
|
||||||
|
// Force only deduping with certain types
|
||||||
|
Game,
|
||||||
|
CRC,
|
||||||
|
MD5,
|
||||||
|
#if NET_FRAMEWORK
|
||||||
|
RIPEMD160,
|
||||||
|
#endif
|
||||||
|
SHA1,
|
||||||
|
SHA256,
|
||||||
|
SHA384,
|
||||||
|
SHA512,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -6,7 +6,6 @@ using System.Threading.Tasks;
|
|||||||
using SabreTools.Core;
|
using SabreTools.Core;
|
||||||
using SabreTools.DatFiles;
|
using SabreTools.DatFiles;
|
||||||
using SabreTools.DatItems;
|
using SabreTools.DatItems;
|
||||||
using SabreTools.Filtering;
|
|
||||||
using SabreTools.IO;
|
using SabreTools.IO;
|
||||||
using SabreTools.Logging;
|
using SabreTools.Logging;
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ using System.Linq;
|
|||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
|
|
||||||
using SabreTools.Core;
|
using SabreTools.Core;
|
||||||
|
using SabreTools.DatFiles;
|
||||||
using SabreTools.DatItems;
|
using SabreTools.DatItems;
|
||||||
|
|
||||||
namespace SabreTools.Filtering
|
namespace SabreTools.Filtering
|
||||||
|
|||||||
@@ -13,6 +13,7 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\SabreTools.Core\SabreTools.Core.csproj" />
|
<ProjectReference Include="..\SabreTools.Core\SabreTools.Core.csproj" />
|
||||||
|
<ProjectReference Include="..\SabreTools.DatFiles\SabreTools.DatFiles.csproj" />
|
||||||
<ProjectReference Include="..\SabreTools.DatItems\SabreTools.DatItems.csproj" />
|
<ProjectReference Include="..\SabreTools.DatItems\SabreTools.DatItems.csproj" />
|
||||||
<ProjectReference Include="..\SabreTools.IO\SabreTools.IO.csproj" />
|
<ProjectReference Include="..\SabreTools.IO\SabreTools.IO.csproj" />
|
||||||
<ProjectReference Include="..\SabreTools.Logging\SabreTools.Logging.csproj" />
|
<ProjectReference Include="..\SabreTools.Logging\SabreTools.Logging.csproj" />
|
||||||
|
|||||||
Reference in New Issue
Block a user