├── .gitattributes ├── .gitignore ├── BinaryRage.UnitTests ├── BinaryRage.FunctionalTests.csproj ├── DBTests.cs ├── Model.cs ├── Properties │ └── AssemblyInfo.cs ├── SmallKeyTests.cs ├── StorageLocationTests.cs ├── WaitForCompletionTests.cs └── packages.config ├── BinaryRage.csproj ├── BinaryRage.nuspec ├── BinaryRage.sln ├── BinaryRageWithTests.sln ├── Cache.cs ├── DB.cs ├── Functions ├── Compress.cs ├── ConvertHelper.cs └── SimpleSerializer.cs ├── Key.cs ├── Properties ├── AssemblyInfo.cs └── AssemblyVersionInfo.cs ├── ReleaseNotes.md ├── SimpleObject.cs ├── Storage.cs ├── readme.md └── tools └── nuget └── nuget.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/.gitignore -------------------------------------------------------------------------------- /BinaryRage.UnitTests/BinaryRage.FunctionalTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/BinaryRage.UnitTests/BinaryRage.FunctionalTests.csproj -------------------------------------------------------------------------------- /BinaryRage.UnitTests/DBTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/BinaryRage.UnitTests/DBTests.cs -------------------------------------------------------------------------------- /BinaryRage.UnitTests/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/BinaryRage.UnitTests/Model.cs -------------------------------------------------------------------------------- /BinaryRage.UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/BinaryRage.UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BinaryRage.UnitTests/SmallKeyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/BinaryRage.UnitTests/SmallKeyTests.cs -------------------------------------------------------------------------------- /BinaryRage.UnitTests/StorageLocationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/BinaryRage.UnitTests/StorageLocationTests.cs -------------------------------------------------------------------------------- /BinaryRage.UnitTests/WaitForCompletionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/BinaryRage.UnitTests/WaitForCompletionTests.cs -------------------------------------------------------------------------------- /BinaryRage.UnitTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/BinaryRage.UnitTests/packages.config -------------------------------------------------------------------------------- /BinaryRage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/BinaryRage.csproj -------------------------------------------------------------------------------- /BinaryRage.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/BinaryRage.nuspec -------------------------------------------------------------------------------- /BinaryRage.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/BinaryRage.sln -------------------------------------------------------------------------------- /BinaryRageWithTests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/BinaryRageWithTests.sln -------------------------------------------------------------------------------- /Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/Cache.cs -------------------------------------------------------------------------------- /DB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/DB.cs -------------------------------------------------------------------------------- /Functions/Compress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/Functions/Compress.cs -------------------------------------------------------------------------------- /Functions/ConvertHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/Functions/ConvertHelper.cs -------------------------------------------------------------------------------- /Functions/SimpleSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/Functions/SimpleSerializer.cs -------------------------------------------------------------------------------- /Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/Key.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/AssemblyVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/Properties/AssemblyVersionInfo.cs -------------------------------------------------------------------------------- /ReleaseNotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/ReleaseNotes.md -------------------------------------------------------------------------------- /SimpleObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/SimpleObject.cs -------------------------------------------------------------------------------- /Storage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/Storage.cs -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/readme.md -------------------------------------------------------------------------------- /tools/nuget/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mchidk/BinaryRage/HEAD/tools/nuget/nuget.exe --------------------------------------------------------------------------------