├── .gitignore ├── README.md ├── RedisService.sln └── RedisService ├── Program.cs ├── Properties └── AssemblyInfo.cs └── RedisService.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/redis-windows-service/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/redis-windows-service/HEAD/README.md -------------------------------------------------------------------------------- /RedisService.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/redis-windows-service/HEAD/RedisService.sln -------------------------------------------------------------------------------- /RedisService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/redis-windows-service/HEAD/RedisService/Program.cs -------------------------------------------------------------------------------- /RedisService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/redis-windows-service/HEAD/RedisService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RedisService/RedisService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcherenkov/redis-windows-service/HEAD/RedisService/RedisService.csproj --------------------------------------------------------------------------------