├── src
├── Chat
│ ├── Global.asax
│ ├── assets
│ │ ├── img
│ │ │ ├── bg.jpg
│ │ │ ├── favicon.png
│ │ │ ├── github_normal.png
│ │ │ ├── no-profile64.png
│ │ │ ├── twitter_normal.png
│ │ │ └── facebook_normal.png
│ │ ├── css
│ │ │ └── default.css
│ │ └── js
│ │ │ └── jquery-3.2.1.min.js
│ ├── ie
│ │ ├── console.min.js
│ │ ├── eventsource.min.js
│ │ └── es5-shim.min.js
│ ├── _layout.html
│ ├── Properties
│ │ ├── PublishProfiles
│ │ │ └── WebDeploy.pubxml
│ │ └── AssemblyInfo.cs
│ ├── Web.config
│ ├── default.css
│ ├── Chat.csproj
│ ├── index.html
│ └── Global.asax.cs
├── NuGet.Config
└── Chat.sln
├── .gitignore
└── README.md
/src/Chat/Global.asax:
--------------------------------------------------------------------------------
1 | <%@ Application Codebehind="Global.asax.cs" Inherits="Chat.Global" Language="C#" %>
2 |
--------------------------------------------------------------------------------
/src/Chat/assets/img/bg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ServiceStackApps/Chat/HEAD/src/Chat/assets/img/bg.jpg
--------------------------------------------------------------------------------
/src/Chat/assets/img/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ServiceStackApps/Chat/HEAD/src/Chat/assets/img/favicon.png
--------------------------------------------------------------------------------
/src/Chat/assets/img/github_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ServiceStackApps/Chat/HEAD/src/Chat/assets/img/github_normal.png
--------------------------------------------------------------------------------
/src/Chat/assets/img/no-profile64.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ServiceStackApps/Chat/HEAD/src/Chat/assets/img/no-profile64.png
--------------------------------------------------------------------------------
/src/Chat/assets/img/twitter_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ServiceStackApps/Chat/HEAD/src/Chat/assets/img/twitter_normal.png
--------------------------------------------------------------------------------
/src/Chat/assets/img/facebook_normal.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ServiceStackApps/Chat/HEAD/src/Chat/assets/img/facebook_normal.png
--------------------------------------------------------------------------------
/src/NuGet.Config:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
15 |