├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── WebAPI.OutputCache.Redis.Tests ├── Methods │ ├── AddTests.cs │ ├── ContainsTests.cs │ ├── GetGenericTests.cs │ ├── GetTests.cs │ └── RemoveTests.cs ├── Properties │ └── AssemblyInfo.cs ├── UserFixture.cs ├── WebAPI.OutputCache.Redis.Tests.csproj ├── app.config └── packages.config ├── WebAPI.OutputCache.Redis.sln ├── WebAPI.OutputCache.Redis ├── IJsonSerializer.cs ├── IRedisConnectionSettings.cs ├── JsonSerializer.cs ├── Properties │ └── AssemblyInfo.cs ├── RedisConnectionSettings.cs ├── RedisOutputCache.cs ├── WebAPI.OutputCache.Redis.csproj ├── WebAPI.OutputCache.Redis.nuspec └── packages.config └── appveyor.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/README.md -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis.Tests/Methods/AddTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis.Tests/Methods/AddTests.cs -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis.Tests/Methods/ContainsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis.Tests/Methods/ContainsTests.cs -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis.Tests/Methods/GetGenericTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis.Tests/Methods/GetGenericTests.cs -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis.Tests/Methods/GetTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis.Tests/Methods/GetTests.cs -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis.Tests/Methods/RemoveTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis.Tests/Methods/RemoveTests.cs -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis.Tests/UserFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis.Tests/UserFixture.cs -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis.Tests/WebAPI.OutputCache.Redis.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis.Tests/WebAPI.OutputCache.Redis.Tests.csproj -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis.Tests/app.config -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis.Tests/packages.config -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis.sln -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis/IJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis/IJsonSerializer.cs -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis/IRedisConnectionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis/IRedisConnectionSettings.cs -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis/JsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis/JsonSerializer.cs -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis/RedisConnectionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis/RedisConnectionSettings.cs -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis/RedisOutputCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis/RedisOutputCache.cs -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis/WebAPI.OutputCache.Redis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis/WebAPI.OutputCache.Redis.csproj -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis/WebAPI.OutputCache.Redis.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis/WebAPI.OutputCache.Redis.nuspec -------------------------------------------------------------------------------- /WebAPI.OutputCache.Redis/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/WebAPI.OutputCache.Redis/packages.config -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bugthesystem/AspNetWebApi-OutputCache-Redis/HEAD/appveyor.yml --------------------------------------------------------------------------------