[xxHash] Fix xxHash not being found

This commit is contained in:
Matt Nadareski
2017-03-17 13:12:01 -07:00
parent e4a0c844d6
commit 809b6aff14
3 changed files with 9 additions and 6 deletions

View File

@@ -29,10 +29,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
using System; using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace xxHashSharp namespace SabreTools.Helper.External
{ {
public class xxHash class xxHash
{ {
public struct XXH_State public struct XXH_State
{ {
@@ -247,6 +251,5 @@ namespace xxHashSharp
{ {
return (value << count) | (value >> (32 - count)); return (value << count) | (value >> (32 - count));
} }
} }
} }

View File

@@ -128,7 +128,7 @@
<Compile Include="External\NaturalSort\NaturalReversedComparer.cs" /> <Compile Include="External\NaturalSort\NaturalReversedComparer.cs" />
<Compile Include="External\OptimizedCRC.cs" /> <Compile Include="External\OptimizedCRC.cs" />
<Compile Include="External\Traverse.cs" /> <Compile Include="External\Traverse.cs" />
<Compile Include="External\xxHash.cs" /> <Compile Include="External\xxHash\xxHash.cs" />
<Compile Include="External\Zlib\CRC32.cs" /> <Compile Include="External\Zlib\CRC32.cs" />
<Compile Include="External\Zlib\Deflate.cs" /> <Compile Include="External\Zlib\Deflate.cs" />
<Compile Include="External\Zlib\DeflateStream.cs" /> <Compile Include="External\Zlib\DeflateStream.cs" />

View File

@@ -7,6 +7,7 @@ using System.Xml.Schema;
using SabreTools.Helper.Data; using SabreTools.Helper.Data;
using SabreTools.Helper.Dats; using SabreTools.Helper.Dats;
using SabreTools.Helper.External;
using SabreTools.Helper.Skippers; using SabreTools.Helper.Skippers;
#if MONO #if MONO
@@ -30,7 +31,6 @@ using StreamReader = System.IO.StreamReader;
#endif #endif
using NaturalSort; using NaturalSort;
using OCRC; using OCRC;
using xxHashSharp;
namespace SabreTools.Helper.Tools namespace SabreTools.Helper.Tools
{ {