├── .gitattributes ├── .gitignore ├── FatAntelope.CommandLine ├── App.config ├── FatAntelope.CommandLine.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── packages.config └── readme.txt ├── FatAntelope.Tests ├── FatAntelope.Tests.csproj ├── Properties │ └── AssemblyInfo.cs ├── XDiffTests.cs ├── XTreeEqualityTests.cs ├── XdtDiffWriterTests.cs ├── app.config └── packages.config ├── FatAntelope.sln ├── FatAntelope.snk ├── FatAntelope ├── FatAntelope.csproj ├── FatAntelope.nuspec ├── Properties │ └── AssemblyInfo.cs ├── Utility │ ├── ArrayHelper.cs │ ├── ByteArrayComparer.cs │ └── Murmur3Hasher.cs ├── Writers │ ├── BaseDiffWriter.cs │ └── XdtDiffWriter.cs ├── XDiff.cs ├── XNode.cs ├── XTree.cs └── license.txt ├── LICENCE.md ├── README.md └── banner.jpg /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/.gitignore -------------------------------------------------------------------------------- /FatAntelope.CommandLine/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope.CommandLine/App.config -------------------------------------------------------------------------------- /FatAntelope.CommandLine/FatAntelope.CommandLine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope.CommandLine/FatAntelope.CommandLine.csproj -------------------------------------------------------------------------------- /FatAntelope.CommandLine/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope.CommandLine/Program.cs -------------------------------------------------------------------------------- /FatAntelope.CommandLine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope.CommandLine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FatAntelope.CommandLine/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope.CommandLine/packages.config -------------------------------------------------------------------------------- /FatAntelope.CommandLine/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope.CommandLine/readme.txt -------------------------------------------------------------------------------- /FatAntelope.Tests/FatAntelope.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope.Tests/FatAntelope.Tests.csproj -------------------------------------------------------------------------------- /FatAntelope.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FatAntelope.Tests/XDiffTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope.Tests/XDiffTests.cs -------------------------------------------------------------------------------- /FatAntelope.Tests/XTreeEqualityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope.Tests/XTreeEqualityTests.cs -------------------------------------------------------------------------------- /FatAntelope.Tests/XdtDiffWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope.Tests/XdtDiffWriterTests.cs -------------------------------------------------------------------------------- /FatAntelope.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope.Tests/app.config -------------------------------------------------------------------------------- /FatAntelope.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope.Tests/packages.config -------------------------------------------------------------------------------- /FatAntelope.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope.sln -------------------------------------------------------------------------------- /FatAntelope.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope.snk -------------------------------------------------------------------------------- /FatAntelope/FatAntelope.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope/FatAntelope.csproj -------------------------------------------------------------------------------- /FatAntelope/FatAntelope.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope/FatAntelope.nuspec -------------------------------------------------------------------------------- /FatAntelope/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FatAntelope/Utility/ArrayHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope/Utility/ArrayHelper.cs -------------------------------------------------------------------------------- /FatAntelope/Utility/ByteArrayComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope/Utility/ByteArrayComparer.cs -------------------------------------------------------------------------------- /FatAntelope/Utility/Murmur3Hasher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope/Utility/Murmur3Hasher.cs -------------------------------------------------------------------------------- /FatAntelope/Writers/BaseDiffWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope/Writers/BaseDiffWriter.cs -------------------------------------------------------------------------------- /FatAntelope/Writers/XdtDiffWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope/Writers/XdtDiffWriter.cs -------------------------------------------------------------------------------- /FatAntelope/XDiff.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope/XDiff.cs -------------------------------------------------------------------------------- /FatAntelope/XNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope/XNode.cs -------------------------------------------------------------------------------- /FatAntelope/XTree.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope/XTree.cs -------------------------------------------------------------------------------- /FatAntelope/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/FatAntelope/license.txt -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/README.md -------------------------------------------------------------------------------- /banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CameronWills/FatAntelope/HEAD/banner.jpg --------------------------------------------------------------------------------