├── .gitignore ├── README.md ├── dist ├── RedisReact-console.exe ├── RedisReact-console.zip ├── RedisReact-winforms.exe ├── RedisReact.AppMac.app.zip ├── RedisReact.AppMac.mono.app.zip └── appsettings.txt ├── license.txt └── src ├── RedisReact.sln ├── RedisReact ├── RedisReact.AppConsole │ ├── App.config │ ├── AppHost.cs │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RedisReact.AppConsole.csproj │ ├── logo.ico │ ├── platform.css │ └── platform.js ├── RedisReact.AppMac │ ├── AppDelegate.cs │ ├── AppDelegate.designer.cs │ ├── AppHost.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── MainMenu.xib │ ├── MainWindow.cs │ ├── MainWindow.designer.cs │ ├── MainWindow.xib │ ├── MainWindowController.cs │ ├── Program.cs │ ├── RedisReact.AppMac.csproj │ ├── Resources │ │ └── logo.icns │ ├── platform.css │ └── platform.js ├── RedisReact.AppWinForms │ ├── App.config │ ├── AppHost.cs │ ├── FormMain.Designer.cs │ ├── FormMain.cs │ ├── FormMain.resx │ ├── NativeHost.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── RedisReact.AppWinForms.csproj │ ├── logo.ico │ ├── platform.css │ └── platform.js ├── RedisReact.Resources │ ├── App.config │ ├── CefResources.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RedisReact.Resources.csproj │ ├── css │ │ └── app.min.css │ ├── default.html │ ├── img │ │ ├── ajax-loader.gif │ │ ├── logo-32.png │ │ ├── logo.ico │ │ ├── react-logo.png │ │ └── redis-logo.png │ ├── js │ │ ├── app.jsx.js │ │ └── app.min.js │ └── lib │ │ ├── css │ │ ├── lib.min.css │ │ ├── octicons-local.ttf │ │ ├── octicons.ttf │ │ └── octicons.woff │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ └── lib.min.js ├── RedisReact.ServiceInterface │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RedisReact.ServiceInterface.csproj │ ├── RedisServices.cs │ ├── SharedUtils.cs │ └── app.config ├── RedisReact.ServiceModel │ ├── CallRedis.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── RedisReact.ServiceModel.csproj ├── RedisReact.Tests │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RedisReact.Tests.csproj │ ├── UnitTests.cs │ └── app.config └── RedisReact │ ├── AppHost.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RedisReact.csproj │ ├── Scripts │ └── _references.js │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── bower.json │ ├── css │ └── app.css │ ├── default.html │ ├── gruntfile.js │ ├── img │ ├── ajax-loader.gif │ ├── logo-32.png │ ├── logo.ico │ ├── react-logo.png │ └── redis-logo.png │ ├── js │ ├── app.jsx │ ├── components │ │ ├── connections.jsx │ │ ├── console.jsx │ │ ├── dashboard.jsx │ │ ├── keyview.jsx │ │ ├── keyviewer.jsx │ │ └── search.jsx │ ├── jsonviewer.js │ ├── redis.js │ ├── stores.js │ └── utils.js │ ├── package.json │ ├── platform.css │ ├── platform.js │ ├── tests │ ├── README.txt │ ├── preprocessor.js │ └── unit │ │ └── hello-test.js │ ├── wwwroot │ ├── Global.asax │ ├── appsettings.txt │ ├── css │ │ └── app.min.css │ ├── default.html │ ├── img │ │ ├── ajax-loader.gif │ │ ├── logo-32.png │ │ ├── logo.ico │ │ ├── react-logo.png │ │ └── redis-logo.png │ ├── js │ │ ├── app.jsx.js │ │ └── app.min.js │ ├── lib │ │ ├── css │ │ │ ├── lib.min.css │ │ │ ├── octicons-local.ttf │ │ │ ├── octicons.ttf │ │ │ └── octicons.woff │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ └── lib.min.js │ ├── platform.css │ ├── platform.js │ └── web.config │ └── wwwroot_build │ ├── 00-install-dependencies.bat │ ├── config-winforms.txt │ ├── deploy │ └── appsettings.txt │ ├── package-deploy-console.bat │ ├── package-deploy-winforms.bat │ └── tools │ ├── 7za.exe │ ├── 7zsd_All.sfx │ ├── ILMerge.exe │ └── Licenses.txt ├── RedisReactMac.sln └── lib └── RedisReact.Resources.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/README.md -------------------------------------------------------------------------------- /dist/RedisReact-console.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/dist/RedisReact-console.exe -------------------------------------------------------------------------------- /dist/RedisReact-console.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/dist/RedisReact-console.zip -------------------------------------------------------------------------------- /dist/RedisReact-winforms.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/dist/RedisReact-winforms.exe -------------------------------------------------------------------------------- /dist/RedisReact.AppMac.app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/dist/RedisReact.AppMac.app.zip -------------------------------------------------------------------------------- /dist/RedisReact.AppMac.mono.app.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/dist/RedisReact.AppMac.mono.app.zip -------------------------------------------------------------------------------- /dist/appsettings.txt: -------------------------------------------------------------------------------- 1 | redis-server 127.0.0.1:6379?db=0 2 | query-limit 20 -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/license.txt -------------------------------------------------------------------------------- /src/RedisReact.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact.sln -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppConsole/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppConsole/App.config -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppConsole/AppHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppConsole/AppHost.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppConsole/Program.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppConsole/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppConsole/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppConsole/RedisReact.AppConsole.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppConsole/RedisReact.AppConsole.csproj -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppConsole/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppConsole/logo.ico -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppConsole/platform.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppConsole/platform.css -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppConsole/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppConsole/platform.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppMac/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppMac/AppDelegate.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppMac/AppDelegate.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppMac/AppDelegate.designer.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppMac/AppHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppMac/AppHost.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppMac/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppMac/Entitlements.plist -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppMac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppMac/Info.plist -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppMac/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppMac/MainMenu.xib -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppMac/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppMac/MainWindow.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppMac/MainWindow.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppMac/MainWindow.designer.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppMac/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppMac/MainWindow.xib -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppMac/MainWindowController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppMac/MainWindowController.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppMac/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppMac/Program.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppMac/RedisReact.AppMac.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppMac/RedisReact.AppMac.csproj -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppMac/Resources/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppMac/Resources/logo.icns -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppMac/platform.css: -------------------------------------------------------------------------------- 1 | /* mac */ 2 | body { 3 | } 4 | -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppMac/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppMac/platform.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppWinForms/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppWinForms/App.config -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppWinForms/AppHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppWinForms/AppHost.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppWinForms/FormMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppWinForms/FormMain.Designer.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppWinForms/FormMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppWinForms/FormMain.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppWinForms/FormMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppWinForms/FormMain.resx -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppWinForms/NativeHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppWinForms/NativeHost.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppWinForms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppWinForms/Program.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppWinForms/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppWinForms/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppWinForms/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppWinForms/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppWinForms/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppWinForms/Properties/Resources.resx -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppWinForms/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppWinForms/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppWinForms/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppWinForms/Properties/Settings.settings -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppWinForms/RedisReact.AppWinForms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppWinForms/RedisReact.AppWinForms.csproj -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppWinForms/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppWinForms/logo.ico -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppWinForms/platform.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppWinForms/platform.css -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.AppWinForms/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.AppWinForms/platform.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/App.config -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/CefResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/CefResources.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/RedisReact.Resources.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/RedisReact.Resources.csproj -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/css/app.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/css/app.min.css -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/default.html -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/img/ajax-loader.gif -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/img/logo-32.png -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/img/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/img/logo.ico -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/img/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/img/react-logo.png -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/img/redis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/img/redis-logo.png -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/js/app.jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/js/app.jsx.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/js/app.min.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/lib/css/lib.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/lib/css/lib.min.css -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/lib/css/octicons-local.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/lib/css/octicons-local.ttf -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/lib/css/octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/lib/css/octicons.ttf -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/lib/css/octicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/lib/css/octicons.woff -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/lib/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/lib/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/lib/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/lib/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/lib/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/lib/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/lib/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/lib/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/lib/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/lib/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Resources/lib/js/lib.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Resources/lib/js/lib.min.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.ServiceInterface/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.ServiceInterface/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.ServiceInterface/RedisReact.ServiceInterface.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.ServiceInterface/RedisReact.ServiceInterface.csproj -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.ServiceInterface/RedisServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.ServiceInterface/RedisServices.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.ServiceInterface/SharedUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.ServiceInterface/SharedUtils.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.ServiceInterface/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.ServiceInterface/app.config -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.ServiceModel/CallRedis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.ServiceModel/CallRedis.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.ServiceModel/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.ServiceModel/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.ServiceModel/RedisReact.ServiceModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.ServiceModel/RedisReact.ServiceModel.csproj -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Tests/RedisReact.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Tests/RedisReact.Tests.csproj -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Tests/UnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Tests/UnitTests.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact.Tests/app.config -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/AppHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/AppHost.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/Global.asax -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/Global.asax.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/RedisReact.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/RedisReact.csproj -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/Scripts/_references.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/Web.Debug.config -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/Web.Release.config -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/Web.config -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/bower.json -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/css/app.css -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/default.html -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/gruntfile.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/img/ajax-loader.gif -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/img/logo-32.png -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/img/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/img/logo.ico -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/img/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/img/react-logo.png -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/img/redis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/img/redis-logo.png -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/js/app.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/js/app.jsx -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/js/components/connections.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/js/components/connections.jsx -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/js/components/console.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/js/components/console.jsx -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/js/components/dashboard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/js/components/dashboard.jsx -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/js/components/keyview.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/js/components/keyview.jsx -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/js/components/keyviewer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/js/components/keyviewer.jsx -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/js/components/search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/js/components/search.jsx -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/js/jsonviewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/js/jsonviewer.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/js/redis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/js/redis.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/js/stores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/js/stores.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/js/utils.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/package.json -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/platform.css: -------------------------------------------------------------------------------- 1 | /* web */ 2 | -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/platform.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/tests/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/tests/README.txt -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/tests/preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/tests/preprocessor.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/tests/unit/hello-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/tests/unit/hello-test.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/Global.asax -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/appsettings.txt: -------------------------------------------------------------------------------- 1 | # Release App Settings 2 | 3 | DebugMode false -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/css/app.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/css/app.min.css -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/default.html -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/img/ajax-loader.gif -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/img/logo-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/img/logo-32.png -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/img/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/img/logo.ico -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/img/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/img/react-logo.png -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/img/redis-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/img/redis-logo.png -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/js/app.jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/js/app.jsx.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/js/app.min.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/lib/css/lib.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/lib/css/lib.min.css -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/lib/css/octicons-local.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/lib/css/octicons-local.ttf -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/lib/css/octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/lib/css/octicons.ttf -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/lib/css/octicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/lib/css/octicons.woff -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/lib/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/lib/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/lib/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/lib/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/lib/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/lib/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/lib/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/lib/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/lib/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/lib/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/lib/js/lib.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/lib/js/lib.min.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/platform.css: -------------------------------------------------------------------------------- 1 | /* web */ 2 | -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/platform.js -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot/web.config -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot_build/00-install-dependencies.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot_build/00-install-dependencies.bat -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot_build/config-winforms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot_build/config-winforms.txt -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot_build/deploy/appsettings.txt: -------------------------------------------------------------------------------- 1 | # Release App Settings 2 | 3 | DebugMode false -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot_build/package-deploy-console.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot_build/package-deploy-console.bat -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot_build/package-deploy-winforms.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot_build/package-deploy-winforms.bat -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot_build/tools/7za.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot_build/tools/7za.exe -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot_build/tools/7zsd_All.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot_build/tools/7zsd_All.sfx -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot_build/tools/ILMerge.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot_build/tools/ILMerge.exe -------------------------------------------------------------------------------- /src/RedisReact/RedisReact/wwwroot_build/tools/Licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReact/RedisReact/wwwroot_build/tools/Licenses.txt -------------------------------------------------------------------------------- /src/RedisReactMac.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/RedisReactMac.sln -------------------------------------------------------------------------------- /src/lib/RedisReact.Resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ServiceStackApps/RedisReact/HEAD/src/lib/RedisReact.Resources.dll --------------------------------------------------------------------------------