├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── LICENSE ├── README.md ├── ReactChatDemo ├── .gitignore ├── ClientApp │ ├── boot.tsx │ ├── components │ │ ├── Counter.tsx │ │ ├── FetchData.tsx │ │ ├── Home.tsx │ │ ├── Layout.tsx │ │ ├── NavMenu.tsx │ │ └── home │ │ │ ├── Chat.tsx │ │ │ └── Users.tsx │ ├── css │ │ └── site.css │ ├── routes.tsx │ └── services │ │ ├── ChatService.ts │ │ ├── Models │ │ ├── ChatMessage.ts │ │ └── User.ts │ │ ├── UsersService.ts │ │ └── WebSocketService.ts ├── Controllers │ ├── ChatController.cs │ ├── HomeController.cs │ └── SampleDataController.cs ├── Hubs │ ├── ChatHub.cs │ └── HubWithPresence.cs ├── Models │ ├── ChatMessage.cs │ └── UserDetails.cs ├── Program.cs ├── ReactChatDemo.csproj ├── Services │ ├── ChatMessageRepository.cs │ ├── ChatMessageTableEntity.cs │ ├── ChatService.cs │ ├── IChatMessageRepository.cs │ └── IChatService.cs ├── Startup.cs ├── User │ ├── IUserTracker.cs │ └── UserTracker.cs ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── npm-shrinkwrap.json ├── package.json ├── tsconfig.json ├── webpack.config.js ├── webpack.config.vendor.js └── wwwroot │ └── favicon.ico ├── ReactChatDemoIdentities ├── Config.cs ├── Program.cs ├── Quickstart │ ├── Account │ │ ├── AccountController.cs │ │ ├── AccountOptions.cs │ │ ├── ExternalProvider.cs │ │ ├── LoggedOutViewModel.cs │ │ ├── LoginInputModel.cs │ │ ├── LoginViewModel.cs │ │ ├── LogoutInputModel.cs │ │ └── LogoutViewModel.cs │ ├── Consent │ │ ├── ConsentController.cs │ │ ├── ConsentInputModel.cs │ │ ├── ConsentOptions.cs │ │ ├── ConsentViewModel.cs │ │ ├── ProcessConsentResult.cs │ │ └── ScopeViewModel.cs │ ├── Diagnostics │ │ ├── DiagnosticsController.cs │ │ └── DiagnosticsViewModel.cs │ ├── Grants │ │ ├── GrantsController.cs │ │ └── GrantsViewModel.cs │ ├── Home │ │ ├── ErrorViewModel.cs │ │ └── HomeController.cs │ ├── SecurityHeadersAttribute.cs │ └── TestUsers.cs ├── ReactChatDemoIdentities.csproj ├── Startup.cs ├── Views │ ├── Account │ │ ├── LoggedOut.cshtml │ │ ├── Login.cshtml │ │ └── Logout.cshtml │ ├── Consent │ │ ├── Index.cshtml │ │ └── _ScopeListItem.cshtml │ ├── Diagnostics │ │ └── Index.cshtml │ ├── Grants │ │ └── Index.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _ValidationScriptsPartial.cshtml │ │ └── _ValidationSummary.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bundleconfig.json ├── tempkey.rsa └── wwwroot │ ├── css │ ├── site.css │ ├── site.less │ └── site.min.css │ ├── favicon.ico │ ├── icon.jpg │ ├── icon.png │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ └── banner4.svg │ ├── js │ ├── signout-redirect.js │ ├── site.js │ └── site.min.js │ └── lib │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── .bower.json │ ├── LICENSE.txt │ ├── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── appveyor.yml ├── react-chat-demo.sln └── tools ├── Addins └── Cake.Kudu.Client.0.3.0 │ ├── Cake.Kudu.Client.nuspec │ └── lib │ ├── net46 │ ├── Cake.Kudu.Client.dll │ └── Cake.Kudu.Client.xml │ └── netstandard1.6 │ ├── Cake.Kudu.Client.dll │ └── Cake.Kudu.Client.xml ├── Cake ├── Autofac.dll ├── Cake.Common.dll ├── Cake.Common.xml ├── Cake.Core.dll ├── Cake.Core.xml ├── Cake.NuGet.dll ├── Cake.NuGet.xml ├── Cake.exe ├── Cake.exe.config ├── Cake.xml ├── LICENSE ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll ├── Microsoft.CodeAnalysis.CSharp.dll ├── Microsoft.CodeAnalysis.Scripting.dll ├── Microsoft.CodeAnalysis.dll ├── Microsoft.Web.XmlTransform.dll ├── Newtonsoft.Json.dll ├── NuGet.Commands.dll ├── NuGet.Common.dll ├── NuGet.Configuration.dll ├── NuGet.DependencyResolver.Core.dll ├── NuGet.Frameworks.dll ├── NuGet.LibraryModel.dll ├── NuGet.PackageManagement.dll ├── NuGet.Packaging.Core.dll ├── NuGet.Packaging.dll ├── NuGet.ProjectModel.dll ├── NuGet.Protocol.dll ├── NuGet.Resolver.dll ├── NuGet.Versioning.dll ├── System.AppContext.dll ├── System.Collections.Immutable.dll ├── System.Console.dll ├── System.Diagnostics.FileVersionInfo.dll ├── System.Diagnostics.StackTrace.dll ├── System.IO.Compression.dll ├── System.IO.FileSystem.Primitives.dll ├── System.IO.FileSystem.dll ├── System.Reflection.Metadata.dll ├── System.Security.Cryptography.Algorithms.dll ├── System.Security.Cryptography.Encoding.dll ├── System.Security.Cryptography.Primitives.dll ├── System.Security.Cryptography.X509Certificates.dll ├── System.Text.Encoding.CodePages.dll ├── System.Threading.Thread.dll ├── System.ValueTuple.dll ├── System.Xml.ReaderWriter.dll ├── System.Xml.XPath.XDocument.dll ├── System.Xml.XPath.dll └── System.Xml.XmlDocument.dll ├── nuget.exe ├── packages.config └── packages.config.md5sum /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-chat-demo -------------------------------------------------------------------------------- /ReactChatDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/.gitignore -------------------------------------------------------------------------------- /ReactChatDemo/ClientApp/boot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/ClientApp/boot.tsx -------------------------------------------------------------------------------- /ReactChatDemo/ClientApp/components/Counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/ClientApp/components/Counter.tsx -------------------------------------------------------------------------------- /ReactChatDemo/ClientApp/components/FetchData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/ClientApp/components/FetchData.tsx -------------------------------------------------------------------------------- /ReactChatDemo/ClientApp/components/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/ClientApp/components/Home.tsx -------------------------------------------------------------------------------- /ReactChatDemo/ClientApp/components/Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/ClientApp/components/Layout.tsx -------------------------------------------------------------------------------- /ReactChatDemo/ClientApp/components/NavMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/ClientApp/components/NavMenu.tsx -------------------------------------------------------------------------------- /ReactChatDemo/ClientApp/components/home/Chat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/ClientApp/components/home/Chat.tsx -------------------------------------------------------------------------------- /ReactChatDemo/ClientApp/components/home/Users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/ClientApp/components/home/Users.tsx -------------------------------------------------------------------------------- /ReactChatDemo/ClientApp/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/ClientApp/css/site.css -------------------------------------------------------------------------------- /ReactChatDemo/ClientApp/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/ClientApp/routes.tsx -------------------------------------------------------------------------------- /ReactChatDemo/ClientApp/services/ChatService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/ClientApp/services/ChatService.ts -------------------------------------------------------------------------------- /ReactChatDemo/ClientApp/services/Models/ChatMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/ClientApp/services/Models/ChatMessage.ts -------------------------------------------------------------------------------- /ReactChatDemo/ClientApp/services/Models/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/ClientApp/services/Models/User.ts -------------------------------------------------------------------------------- /ReactChatDemo/ClientApp/services/UsersService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/ClientApp/services/UsersService.ts -------------------------------------------------------------------------------- /ReactChatDemo/ClientApp/services/WebSocketService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/ClientApp/services/WebSocketService.ts -------------------------------------------------------------------------------- /ReactChatDemo/Controllers/ChatController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Controllers/ChatController.cs -------------------------------------------------------------------------------- /ReactChatDemo/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Controllers/HomeController.cs -------------------------------------------------------------------------------- /ReactChatDemo/Controllers/SampleDataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Controllers/SampleDataController.cs -------------------------------------------------------------------------------- /ReactChatDemo/Hubs/ChatHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Hubs/ChatHub.cs -------------------------------------------------------------------------------- /ReactChatDemo/Hubs/HubWithPresence.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Hubs/HubWithPresence.cs -------------------------------------------------------------------------------- /ReactChatDemo/Models/ChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Models/ChatMessage.cs -------------------------------------------------------------------------------- /ReactChatDemo/Models/UserDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Models/UserDetails.cs -------------------------------------------------------------------------------- /ReactChatDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Program.cs -------------------------------------------------------------------------------- /ReactChatDemo/ReactChatDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/ReactChatDemo.csproj -------------------------------------------------------------------------------- /ReactChatDemo/Services/ChatMessageRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Services/ChatMessageRepository.cs -------------------------------------------------------------------------------- /ReactChatDemo/Services/ChatMessageTableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Services/ChatMessageTableEntity.cs -------------------------------------------------------------------------------- /ReactChatDemo/Services/ChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Services/ChatService.cs -------------------------------------------------------------------------------- /ReactChatDemo/Services/IChatMessageRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Services/IChatMessageRepository.cs -------------------------------------------------------------------------------- /ReactChatDemo/Services/IChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Services/IChatService.cs -------------------------------------------------------------------------------- /ReactChatDemo/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Startup.cs -------------------------------------------------------------------------------- /ReactChatDemo/User/IUserTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/User/IUserTracker.cs -------------------------------------------------------------------------------- /ReactChatDemo/User/UserTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/User/UserTracker.cs -------------------------------------------------------------------------------- /ReactChatDemo/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /ReactChatDemo/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /ReactChatDemo/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /ReactChatDemo/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /ReactChatDemo/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /ReactChatDemo/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/appsettings.Development.json -------------------------------------------------------------------------------- /ReactChatDemo/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/appsettings.json -------------------------------------------------------------------------------- /ReactChatDemo/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/npm-shrinkwrap.json -------------------------------------------------------------------------------- /ReactChatDemo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/package.json -------------------------------------------------------------------------------- /ReactChatDemo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/tsconfig.json -------------------------------------------------------------------------------- /ReactChatDemo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/webpack.config.js -------------------------------------------------------------------------------- /ReactChatDemo/webpack.config.vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/webpack.config.vendor.js -------------------------------------------------------------------------------- /ReactChatDemo/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemo/wwwroot/favicon.ico -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Config.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Program.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Account/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Account/AccountController.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Account/AccountOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Account/AccountOptions.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Account/ExternalProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Account/ExternalProvider.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Account/LoggedOutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Account/LoggedOutViewModel.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Account/LoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Account/LoginInputModel.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Account/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Account/LoginViewModel.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Account/LogoutInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Account/LogoutInputModel.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Account/LogoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Account/LogoutViewModel.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Consent/ConsentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Consent/ConsentController.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Consent/ConsentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Consent/ConsentInputModel.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Consent/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Consent/ConsentOptions.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Consent/ConsentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Consent/ConsentViewModel.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Consent/ProcessConsentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Consent/ProcessConsentResult.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Consent/ScopeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Consent/ScopeViewModel.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Diagnostics/DiagnosticsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Diagnostics/DiagnosticsController.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Diagnostics/DiagnosticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Diagnostics/DiagnosticsViewModel.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Grants/GrantsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Grants/GrantsController.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Grants/GrantsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Grants/GrantsViewModel.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Home/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Home/ErrorViewModel.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/Home/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/Home/HomeController.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/SecurityHeadersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/SecurityHeadersAttribute.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Quickstart/TestUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Quickstart/TestUsers.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/ReactChatDemoIdentities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/ReactChatDemoIdentities.csproj -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Startup.cs -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Views/Account/LoggedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Views/Account/LoggedOut.cshtml -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Views/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Views/Account/Logout.cshtml -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Views/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Views/Consent/Index.cshtml -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Views/Consent/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Views/Consent/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Views/Diagnostics/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Views/Diagnostics/Index.cshtml -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Views/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Views/Grants/Index.cshtml -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Views/Home/About.cshtml -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Views/Shared/_ValidationSummary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Views/Shared/_ValidationSummary.cshtml -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /ReactChatDemoIdentities/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /ReactChatDemoIdentities/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/appsettings.Development.json -------------------------------------------------------------------------------- /ReactChatDemoIdentities/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/appsettings.json -------------------------------------------------------------------------------- /ReactChatDemoIdentities/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/bundleconfig.json -------------------------------------------------------------------------------- /ReactChatDemoIdentities/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/tempkey.rsa -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/css/site.css -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/css/site.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/css/site.less -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/favicon.ico -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/icon.jpg -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/icon.png -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/js/signout-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/js/signout-redirect.js -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/jquery/jquery.js -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /ReactChatDemoIdentities/wwwroot/lib/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/ReactChatDemoIdentities/wwwroot/lib/jquery/jquery.min.map -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/appveyor.yml -------------------------------------------------------------------------------- /react-chat-demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/react-chat-demo.sln -------------------------------------------------------------------------------- /tools/Addins/Cake.Kudu.Client.0.3.0/Cake.Kudu.Client.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Addins/Cake.Kudu.Client.0.3.0/Cake.Kudu.Client.nuspec -------------------------------------------------------------------------------- /tools/Addins/Cake.Kudu.Client.0.3.0/lib/net46/Cake.Kudu.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Addins/Cake.Kudu.Client.0.3.0/lib/net46/Cake.Kudu.Client.dll -------------------------------------------------------------------------------- /tools/Addins/Cake.Kudu.Client.0.3.0/lib/net46/Cake.Kudu.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Addins/Cake.Kudu.Client.0.3.0/lib/net46/Cake.Kudu.Client.xml -------------------------------------------------------------------------------- /tools/Addins/Cake.Kudu.Client.0.3.0/lib/netstandard1.6/Cake.Kudu.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Addins/Cake.Kudu.Client.0.3.0/lib/netstandard1.6/Cake.Kudu.Client.dll -------------------------------------------------------------------------------- /tools/Addins/Cake.Kudu.Client.0.3.0/lib/netstandard1.6/Cake.Kudu.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Addins/Cake.Kudu.Client.0.3.0/lib/netstandard1.6/Cake.Kudu.Client.xml -------------------------------------------------------------------------------- /tools/Cake/Autofac.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/Autofac.dll -------------------------------------------------------------------------------- /tools/Cake/Cake.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/Cake.Common.dll -------------------------------------------------------------------------------- /tools/Cake/Cake.Common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/Cake.Common.xml -------------------------------------------------------------------------------- /tools/Cake/Cake.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/Cake.Core.dll -------------------------------------------------------------------------------- /tools/Cake/Cake.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/Cake.Core.xml -------------------------------------------------------------------------------- /tools/Cake/Cake.NuGet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/Cake.NuGet.dll -------------------------------------------------------------------------------- /tools/Cake/Cake.NuGet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/Cake.NuGet.xml -------------------------------------------------------------------------------- /tools/Cake/Cake.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/Cake.exe -------------------------------------------------------------------------------- /tools/Cake/Cake.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/Cake.exe.config -------------------------------------------------------------------------------- /tools/Cake/Cake.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/Cake.xml -------------------------------------------------------------------------------- /tools/Cake/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/LICENSE -------------------------------------------------------------------------------- /tools/Cake/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /tools/Cake/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /tools/Cake/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /tools/Cake/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /tools/Cake/Microsoft.Web.XmlTransform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/Microsoft.Web.XmlTransform.dll -------------------------------------------------------------------------------- /tools/Cake/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /tools/Cake/NuGet.Commands.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/NuGet.Commands.dll -------------------------------------------------------------------------------- /tools/Cake/NuGet.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/NuGet.Common.dll -------------------------------------------------------------------------------- /tools/Cake/NuGet.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/NuGet.Configuration.dll -------------------------------------------------------------------------------- /tools/Cake/NuGet.DependencyResolver.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/NuGet.DependencyResolver.Core.dll -------------------------------------------------------------------------------- /tools/Cake/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /tools/Cake/NuGet.LibraryModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/NuGet.LibraryModel.dll -------------------------------------------------------------------------------- /tools/Cake/NuGet.PackageManagement.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/NuGet.PackageManagement.dll -------------------------------------------------------------------------------- /tools/Cake/NuGet.Packaging.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/NuGet.Packaging.Core.dll -------------------------------------------------------------------------------- /tools/Cake/NuGet.Packaging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/NuGet.Packaging.dll -------------------------------------------------------------------------------- /tools/Cake/NuGet.ProjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/NuGet.ProjectModel.dll -------------------------------------------------------------------------------- /tools/Cake/NuGet.Protocol.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/NuGet.Protocol.dll -------------------------------------------------------------------------------- /tools/Cake/NuGet.Resolver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/NuGet.Resolver.dll -------------------------------------------------------------------------------- /tools/Cake/NuGet.Versioning.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/NuGet.Versioning.dll -------------------------------------------------------------------------------- /tools/Cake/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.AppContext.dll -------------------------------------------------------------------------------- /tools/Cake/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /tools/Cake/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.Console.dll -------------------------------------------------------------------------------- /tools/Cake/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /tools/Cake/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /tools/Cake/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.IO.Compression.dll -------------------------------------------------------------------------------- /tools/Cake/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /tools/Cake/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /tools/Cake/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /tools/Cake/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /tools/Cake/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /tools/Cake/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /tools/Cake/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /tools/Cake/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /tools/Cake/System.Threading.Thread.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.Threading.Thread.dll -------------------------------------------------------------------------------- /tools/Cake/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.ValueTuple.dll -------------------------------------------------------------------------------- /tools/Cake/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /tools/Cake/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /tools/Cake/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.Xml.XPath.dll -------------------------------------------------------------------------------- /tools/Cake/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/Cake/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /tools/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/nuget.exe -------------------------------------------------------------------------------- /tools/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/packages.config -------------------------------------------------------------------------------- /tools/packages.config.md5sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuergenGutsch/react-chat-demo/HEAD/tools/packages.config.md5sum --------------------------------------------------------------------------------