├── .gitignore ├── LICENSE.txt ├── README.md └── Shaman.BlobStore ├── BlobPackage.cs ├── BlobStore.cs ├── BlobStream.cs ├── ExtensionMethods.cs ├── FileLocation.cs ├── PackageDirectory.cs ├── Shaman.BlobStore.csproj ├── ShamanOpenSourceKey.snk └── UnseekableStreamWrapper.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiufo/Shaman.BlobStore/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiufo/Shaman.BlobStore/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiufo/Shaman.BlobStore/HEAD/README.md -------------------------------------------------------------------------------- /Shaman.BlobStore/BlobPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiufo/Shaman.BlobStore/HEAD/Shaman.BlobStore/BlobPackage.cs -------------------------------------------------------------------------------- /Shaman.BlobStore/BlobStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiufo/Shaman.BlobStore/HEAD/Shaman.BlobStore/BlobStore.cs -------------------------------------------------------------------------------- /Shaman.BlobStore/BlobStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiufo/Shaman.BlobStore/HEAD/Shaman.BlobStore/BlobStream.cs -------------------------------------------------------------------------------- /Shaman.BlobStore/ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiufo/Shaman.BlobStore/HEAD/Shaman.BlobStore/ExtensionMethods.cs -------------------------------------------------------------------------------- /Shaman.BlobStore/FileLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiufo/Shaman.BlobStore/HEAD/Shaman.BlobStore/FileLocation.cs -------------------------------------------------------------------------------- /Shaman.BlobStore/PackageDirectory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiufo/Shaman.BlobStore/HEAD/Shaman.BlobStore/PackageDirectory.cs -------------------------------------------------------------------------------- /Shaman.BlobStore/Shaman.BlobStore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiufo/Shaman.BlobStore/HEAD/Shaman.BlobStore/Shaman.BlobStore.csproj -------------------------------------------------------------------------------- /Shaman.BlobStore/ShamanOpenSourceKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiufo/Shaman.BlobStore/HEAD/Shaman.BlobStore/ShamanOpenSourceKey.snk -------------------------------------------------------------------------------- /Shaman.BlobStore/UnseekableStreamWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiufo/Shaman.BlobStore/HEAD/Shaman.BlobStore/UnseekableStreamWrapper.cs --------------------------------------------------------------------------------