├── .gitattributes ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── example.md ├── example ├── angular │ ├── .editorconfig │ ├── .gitignore │ ├── README.md │ ├── angular.json │ ├── e2e │ │ ├── src │ │ │ ├── app.e2e-spec.ts │ │ │ └── app.po.ts │ │ └── tsconfig.e2e.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ └── service │ │ │ │ └── chat.service.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── browserslist │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ ├── tsconfig.json │ └── tslint.json └── aspnet │ ├── .vs │ ├── NgxSignalRExample │ │ └── v15 │ │ │ ├── .suo │ │ │ └── Server │ │ │ └── sqlite3 │ │ │ ├── db.lock │ │ │ ├── storage.ide │ │ │ ├── storage.ide-shm │ │ │ └── storage.ide-wal │ └── config │ │ └── applicationhost.config │ ├── NgxSignalRExample.sln │ ├── NgxSignalRExample │ ├── .gitignore │ ├── App_Start │ │ ├── BundleConfig.cs │ │ ├── FilterConfig.cs │ │ └── RouteConfig.cs │ ├── ApplicationInsights.config │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── Controllers │ │ └── HomeController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Hubs │ │ └── ChatHub.cs │ ├── NgxSignalRExample.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ ├── About.cshtml │ │ │ ├── Contact.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── packages.config │ └── packages │ ├── Antlr.3.5.0.2 │ ├── Antlr.3.5.0.2.nupkg │ └── lib │ │ ├── Antlr3.Runtime.dll │ │ └── Antlr3.Runtime.pdb │ ├── Microsoft.ApplicationInsights.2.5.1 │ ├── Microsoft.ApplicationInsights.2.5.1.nupkg │ └── lib │ │ ├── net45 │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── net46 │ │ └── Microsoft.ApplicationInsights.dll │ │ └── netstandard1.3 │ │ └── Microsoft.ApplicationInsights.dll │ ├── Microsoft.ApplicationInsights.Agent.Intercept.2.4.0 │ ├── Microsoft.ApplicationInsights.Agent.Intercept.2.4.0.nupkg │ └── lib │ │ ├── net40 │ │ └── Microsoft.AI.Agent.Intercept.dll │ │ └── net45 │ │ └── Microsoft.AI.Agent.Intercept.dll │ ├── Microsoft.ApplicationInsights.DependencyCollector.2.5.1 │ ├── Microsoft.ApplicationInsights.DependencyCollector.2.5.1.nupkg │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net45 │ │ ├── Microsoft.AI.DependencyCollector.XML │ │ └── Microsoft.AI.DependencyCollector.dll │ │ └── netstandard1.6 │ │ ├── Microsoft.AI.DependencyCollector.dll │ │ └── Microsoft.AI.DependencyCollector.xml │ ├── Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1 │ ├── Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1.nupkg │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net45 │ │ └── Microsoft.AI.PerfCounterCollector.dll │ │ └── netstandard1.6 │ │ ├── Microsoft.AI.PerfCounterCollector.dll │ │ └── Microsoft.AI.PerfCounterCollector.xml │ ├── Microsoft.ApplicationInsights.Web.2.5.1 │ ├── Microsoft.ApplicationInsights.Web.2.5.1.nupkg │ ├── content │ │ └── net45 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ ├── ApplicationInsights.config.transform │ │ │ ├── ApplicationInsights.config.uninstall.xdt │ │ │ ├── web.config.install.xdt │ │ │ └── web.config.uninstall.xdt │ └── lib │ │ └── net45 │ │ ├── Microsoft.AI.Web.XML │ │ └── Microsoft.AI.Web.dll │ ├── Microsoft.ApplicationInsights.WindowsServer.2.5.1 │ ├── Microsoft.ApplicationInsights.WindowsServer.2.5.1.nupkg │ ├── Tools │ │ └── install.ps1 │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ └── net45 │ │ ├── Microsoft.AI.WindowsServer.XML │ │ └── Microsoft.AI.WindowsServer.dll │ ├── Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.5.1 │ ├── Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.5.1.nupkg │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net45 │ │ └── Microsoft.AI.ServerTelemetryChannel.dll │ │ └── netstandard1.3 │ │ └── Microsoft.AI.ServerTelemetryChannel.dll │ ├── Microsoft.AspNet.Cors.5.0.0 │ ├── Microsoft.AspNet.Cors.5.0.0.nupkg │ └── lib │ │ └── net45 │ │ └── System.Web.Cors.dll │ ├── Microsoft.AspNet.Mvc.5.2.4 │ ├── Content │ │ ├── Web.config.install.xdt │ │ └── Web.config.uninstall.xdt │ ├── Microsoft.AspNet.Mvc.5.2.4.nupkg │ └── lib │ │ └── net45 │ │ ├── System.Web.Mvc.dll │ │ └── System.Web.Mvc.xml │ ├── Microsoft.AspNet.Razor.3.2.4 │ ├── Microsoft.AspNet.Razor.3.2.4.nupkg │ └── lib │ │ └── net45 │ │ ├── System.Web.Razor.dll │ │ └── System.Web.Razor.xml │ ├── Microsoft.AspNet.SignalR.2.3.0 │ ├── .signature.p7s │ ├── Microsoft.AspNet.SignalR.2.3.0.nupkg │ └── readme.txt │ ├── Microsoft.AspNet.SignalR.Core.2.3.0 │ ├── .signature.p7s │ ├── Microsoft.AspNet.SignalR.Core.2.3.0.nupkg │ └── lib │ │ └── net45 │ │ ├── Microsoft.AspNet.SignalR.Core.dll │ │ └── Microsoft.AspNet.SignalR.Core.xml │ ├── Microsoft.AspNet.SignalR.JS.2.3.0 │ ├── .signature.p7s │ └── Microsoft.AspNet.SignalR.JS.2.3.0.nupkg │ ├── Microsoft.AspNet.SignalR.SystemWeb.2.3.0 │ ├── .signature.p7s │ ├── Microsoft.AspNet.SignalR.SystemWeb.2.3.0.nupkg │ └── lib │ │ └── net45 │ │ ├── Microsoft.AspNet.SignalR.SystemWeb.XML │ │ └── Microsoft.AspNet.SignalR.SystemWeb.dll │ ├── Microsoft.AspNet.TelemetryCorrelation.1.0.0 │ ├── Microsoft.AspNet.TelemetryCorrelation.1.0.0.nupkg │ ├── content │ │ └── net45 │ │ │ ├── web.config.install.xdt │ │ │ └── web.config.uninstall.xdt │ └── lib │ │ └── net45 │ │ ├── Microsoft.AspNet.TelemetryCorrelation.dll │ │ └── Microsoft.AspNet.TelemetryCorrelation.xml │ ├── Microsoft.AspNet.Web.Optimization.1.1.3 │ ├── Microsoft.AspNet.Web.Optimization.1.1.3.nupkg │ └── lib │ │ └── net40 │ │ ├── System.Web.Optimization.dll │ │ └── system.web.optimization.xml │ ├── Microsoft.AspNet.WebPages.3.2.4 │ ├── Content │ │ ├── Web.config.install.xdt │ │ └── Web.config.uninstall.xdt │ ├── Microsoft.AspNet.WebPages.3.2.4.nupkg │ └── lib │ │ └── net45 │ │ ├── System.Web.Helpers.dll │ │ ├── System.Web.Helpers.xml │ │ ├── System.Web.WebPages.Deployment.dll │ │ ├── System.Web.WebPages.Deployment.xml │ │ ├── System.Web.WebPages.Razor.dll │ │ ├── System.Web.WebPages.Razor.xml │ │ ├── System.Web.WebPages.dll │ │ └── System.Web.WebPages.xml │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0 │ ├── .signature.p7s │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0.nupkg │ ├── build │ │ ├── net45 │ │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props │ │ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props │ │ └── net46 │ │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props │ │ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props │ ├── content │ │ ├── net45 │ │ │ ├── app.config.install.xdt │ │ │ ├── app.config.uninstall.xdt │ │ │ ├── web.config.install.xdt │ │ │ └── web.config.uninstall.xdt │ │ └── net46 │ │ │ ├── app.config.install.xdt │ │ │ ├── app.config.uninstall.xdt │ │ │ ├── web.config.install.xdt │ │ │ └── web.config.uninstall.xdt │ ├── lib │ │ └── net45 │ │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll │ │ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml │ └── tools │ │ ├── Roslyn45 │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll │ │ ├── Microsoft.CSharp.Core.targets │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.DiaSymReader.Native.amd64.dll │ │ ├── Microsoft.DiaSymReader.Native.x86.dll │ │ ├── Microsoft.VisualBasic.Core.targets │ │ ├── System.AppContext.dll │ │ ├── System.Collections.Immutable.dll │ │ ├── System.Diagnostics.StackTrace.dll │ │ ├── System.IO.FileSystem.Primitives.dll │ │ ├── System.IO.FileSystem.dll │ │ ├── System.Reflection.Metadata.dll │ │ ├── VBCSCompiler.exe │ │ ├── VBCSCompiler.exe.config │ │ ├── csc.exe │ │ ├── csc.exe.config │ │ ├── csc.rsp │ │ ├── csi.exe │ │ ├── csi.rsp │ │ ├── vbc.exe │ │ ├── vbc.exe.config │ │ └── vbc.rsp │ │ ├── RoslynLatest │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll │ │ ├── Microsoft.CSharp.Core.targets │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.DiaSymReader.Native.amd64.dll │ │ ├── Microsoft.DiaSymReader.Native.x86.dll │ │ ├── Microsoft.Managed.Core.targets │ │ ├── Microsoft.VisualBasic.Core.targets │ │ ├── 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.IO.Pipes.AccessControl.dll │ │ ├── System.IO.Pipes.dll │ │ ├── System.Reflection.Metadata.dll │ │ ├── System.Security.AccessControl.dll │ │ ├── System.Security.Claims.dll │ │ ├── System.Security.Cryptography.Algorithms.dll │ │ ├── System.Security.Cryptography.Encoding.dll │ │ ├── System.Security.Cryptography.Primitives.dll │ │ ├── System.Security.Cryptography.X509Certificates.dll │ │ ├── System.Security.Principal.Windows.dll │ │ ├── System.Text.Encoding.CodePages.dll │ │ ├── System.ValueTuple.dll │ │ ├── System.Xml.ReaderWriter.dll │ │ ├── System.Xml.XPath.XDocument.dll │ │ ├── System.Xml.XPath.dll │ │ ├── System.Xml.XmlDocument.dll │ │ ├── VBCSCompiler.exe │ │ ├── VBCSCompiler.exe.config │ │ ├── csc.exe │ │ ├── csc.exe.config │ │ ├── csc.rsp │ │ ├── csi.exe │ │ ├── csi.exe.config │ │ ├── csi.rsp │ │ ├── vbc.exe │ │ ├── vbc.exe.config │ │ └── vbc.rsp │ │ └── net45 │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.Owin.4.0.0 │ ├── Microsoft.Owin.4.0.0.nupkg │ └── lib │ │ └── net451 │ │ ├── Microsoft.Owin.XML │ │ └── Microsoft.Owin.dll │ ├── Microsoft.Owin.Cors.4.0.0 │ ├── Microsoft.Owin.Cors.4.0.0.nupkg │ └── lib │ │ └── net451 │ │ ├── Microsoft.Owin.Cors.XML │ │ └── Microsoft.Owin.Cors.dll │ ├── Microsoft.Owin.Host.SystemWeb.2.1.0 │ ├── Microsoft.Owin.Host.SystemWeb.2.1.0.nupkg │ └── lib │ │ ├── net40 │ │ ├── Microsoft.Owin.Host.SystemWeb.dll │ │ └── Microsoft.Owin.Host.SystemWeb.xml │ │ └── net45 │ │ ├── Microsoft.Owin.Host.SystemWeb.dll │ │ └── Microsoft.Owin.Host.SystemWeb.xml │ ├── Microsoft.Owin.Security.2.1.0 │ ├── Microsoft.Owin.Security.2.1.0.nupkg │ └── lib │ │ └── net45 │ │ ├── Microsoft.Owin.Security.XML │ │ └── Microsoft.Owin.Security.dll │ ├── Microsoft.Web.Infrastructure.1.0.0.0 │ ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg │ └── lib │ │ └── net40 │ │ └── Microsoft.Web.Infrastructure.dll │ ├── Microsoft.jQuery.Unobtrusive.Validation.3.2.4 │ └── Microsoft.jQuery.Unobtrusive.Validation.3.2.4.nupkg │ ├── Modernizr.2.8.3 │ ├── Modernizr.2.8.3.nupkg │ └── Tools │ │ ├── common.ps1 │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Newtonsoft.Json.11.0.1 │ ├── LICENSE.md │ ├── Newtonsoft.Json.11.0.1.nupkg │ └── lib │ │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard1.3 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── netstandard2.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40%2Bsl5%2Bwin8%2Bwp8%2Bwpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45%2Bwin8%2Bwp8%2Bwpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── Owin.1.0 │ ├── Owin.1.0.nupkg │ └── lib │ │ └── net40 │ │ └── Owin.dll │ ├── System.Diagnostics.DiagnosticSource.4.4.1 │ ├── LICENSE.TXT │ ├── System.Diagnostics.DiagnosticSource.4.4.1.nupkg │ ├── THIRD-PARTY-NOTICES.TXT │ ├── lib │ │ ├── net45 │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ └── System.Diagnostics.DiagnosticSource.xml │ │ ├── net46 │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ └── System.Diagnostics.DiagnosticSource.xml │ │ ├── netcoreapp2.0 │ │ │ └── _._ │ │ ├── netstandard1.1 │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ └── System.Diagnostics.DiagnosticSource.xml │ │ ├── netstandard1.3 │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ └── System.Diagnostics.DiagnosticSource.xml │ │ └── portable-net45%2Bwin8%2Bwpa81 │ │ │ ├── System.Diagnostics.DiagnosticSource.dll │ │ │ └── System.Diagnostics.DiagnosticSource.xml │ ├── ref │ │ └── netcoreapp2.0 │ │ │ └── _._ │ ├── useSharedDesignerContext.txt │ └── version.txt │ ├── WebGrease.1.6.0 │ ├── WebGrease.1.6.0.nupkg │ ├── lib │ │ └── WebGrease.dll │ └── tools │ │ └── WG.EXE │ ├── bootstrap.3.3.7 │ ├── bootstrap.3.3.7.nupkg │ └── content │ │ ├── Content │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ │ └── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── jQuery.3.3.1 │ ├── Tools │ │ ├── common.ps1 │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ └── jQuery.3.3.1.nupkg │ └── jQuery.Validation.1.17.0 │ └── jQuery.Validation.1.17.0.nupkg ├── index.d.ts ├── index.ts ├── ngx-signalr-hubservice.d.ts ├── ngx-signalr-hubservice.ts ├── package.json └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/README.md -------------------------------------------------------------------------------- /example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example.md -------------------------------------------------------------------------------- /example/angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/.editorconfig -------------------------------------------------------------------------------- /example/angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/.gitignore -------------------------------------------------------------------------------- /example/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/README.md -------------------------------------------------------------------------------- /example/angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/angular.json -------------------------------------------------------------------------------- /example/angular/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /example/angular/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/e2e/src/app.po.ts -------------------------------------------------------------------------------- /example/angular/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /example/angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/package-lock.json -------------------------------------------------------------------------------- /example/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/package.json -------------------------------------------------------------------------------- /example/angular/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/src/app/app.component.html -------------------------------------------------------------------------------- /example/angular/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /example/angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/src/app/app.component.ts -------------------------------------------------------------------------------- /example/angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/src/app/app.module.ts -------------------------------------------------------------------------------- /example/angular/src/app/service/chat.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/src/app/service/chat.service.ts -------------------------------------------------------------------------------- /example/angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/angular/src/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/src/browserslist -------------------------------------------------------------------------------- /example/angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /example/angular/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/src/environments/environment.ts -------------------------------------------------------------------------------- /example/angular/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/src/favicon.ico -------------------------------------------------------------------------------- /example/angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/src/index.html -------------------------------------------------------------------------------- /example/angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/src/main.ts -------------------------------------------------------------------------------- /example/angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/src/polyfills.ts -------------------------------------------------------------------------------- /example/angular/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/src/styles.css -------------------------------------------------------------------------------- /example/angular/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/src/test.ts -------------------------------------------------------------------------------- /example/angular/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/src/tsconfig.app.json -------------------------------------------------------------------------------- /example/angular/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/src/tsconfig.spec.json -------------------------------------------------------------------------------- /example/angular/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/src/tslint.json -------------------------------------------------------------------------------- /example/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/tsconfig.json -------------------------------------------------------------------------------- /example/angular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/angular/tslint.json -------------------------------------------------------------------------------- /example/aspnet/.vs/NgxSignalRExample/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/.vs/NgxSignalRExample/v15/.suo -------------------------------------------------------------------------------- /example/aspnet/.vs/NgxSignalRExample/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/aspnet/.vs/NgxSignalRExample/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/.vs/NgxSignalRExample/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /example/aspnet/.vs/NgxSignalRExample/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/.vs/NgxSignalRExample/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /example/aspnet/.vs/NgxSignalRExample/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/.vs/NgxSignalRExample/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /example/aspnet/.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample.sln -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/.gitignore -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/ApplicationInsights.config -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Content/Site.css -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Content/bootstrap.css -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Content/bootstrap.min.css -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Controllers/HomeController.cs -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Global.asax -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Global.asax.cs -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Hubs/ChatHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Hubs/ChatHub.cs -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/NgxSignalRExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/NgxSignalRExample.csproj -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Startup.cs -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Views/Home/About.cshtml -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Views/Web.config -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Web.Debug.config -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Web.Release.config -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/Web.config -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/favicon.ico -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /example/aspnet/NgxSignalRExample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/NgxSignalRExample/packages.config -------------------------------------------------------------------------------- /example/aspnet/packages/Antlr.3.5.0.2/Antlr.3.5.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Antlr.3.5.0.2/Antlr.3.5.0.2.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Antlr.3.5.0.2/lib/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Antlr.3.5.0.2/lib/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Antlr.3.5.0.2/lib/Antlr3.Runtime.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Antlr.3.5.0.2/lib/Antlr3.Runtime.pdb -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.2.5.1/Microsoft.ApplicationInsights.2.5.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.2.5.1/Microsoft.ApplicationInsights.2.5.1.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.2.5.1/lib/net45/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.2.5.1/lib/net45/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.2.5.1/lib/net46/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.2.5.1/lib/net46/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.2.5.1/lib/netstandard1.3/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.2.5.1/lib/netstandard1.3/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.Agent.Intercept.2.4.0/Microsoft.ApplicationInsights.Agent.Intercept.2.4.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.Agent.Intercept.2.4.0/Microsoft.ApplicationInsights.Agent.Intercept.2.4.0.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.Agent.Intercept.2.4.0/lib/net40/Microsoft.AI.Agent.Intercept.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.Agent.Intercept.2.4.0/lib/net40/Microsoft.AI.Agent.Intercept.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.Agent.Intercept.2.4.0/lib/net45/Microsoft.AI.Agent.Intercept.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.Agent.Intercept.2.4.0/lib/net45/Microsoft.AI.Agent.Intercept.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.DependencyCollector.2.5.1/Microsoft.ApplicationInsights.DependencyCollector.2.5.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.DependencyCollector.2.5.1/Microsoft.ApplicationInsights.DependencyCollector.2.5.1.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.DependencyCollector.2.5.1/content/ApplicationInsights.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.DependencyCollector.2.5.1/content/ApplicationInsights.config.install.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.DependencyCollector.2.5.1/content/ApplicationInsights.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.DependencyCollector.2.5.1/content/ApplicationInsights.config.transform -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.DependencyCollector.2.5.1/content/ApplicationInsights.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.DependencyCollector.2.5.1/content/ApplicationInsights.config.uninstall.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.DependencyCollector.2.5.1/lib/net45/Microsoft.AI.DependencyCollector.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.DependencyCollector.2.5.1/lib/net45/Microsoft.AI.DependencyCollector.XML -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.DependencyCollector.2.5.1/lib/net45/Microsoft.AI.DependencyCollector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.DependencyCollector.2.5.1/lib/net45/Microsoft.AI.DependencyCollector.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.DependencyCollector.2.5.1/lib/netstandard1.6/Microsoft.AI.DependencyCollector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.DependencyCollector.2.5.1/lib/netstandard1.6/Microsoft.AI.DependencyCollector.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.DependencyCollector.2.5.1/lib/netstandard1.6/Microsoft.AI.DependencyCollector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.DependencyCollector.2.5.1/lib/netstandard1.6/Microsoft.AI.DependencyCollector.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1/Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1/Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1/content/ApplicationInsights.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1/content/ApplicationInsights.config.install.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1/content/ApplicationInsights.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1/content/ApplicationInsights.config.transform -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1/content/ApplicationInsights.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1/content/ApplicationInsights.config.uninstall.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1/lib/net45/Microsoft.AI.PerfCounterCollector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1/lib/net45/Microsoft.AI.PerfCounterCollector.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1/lib/netstandard1.6/Microsoft.AI.PerfCounterCollector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1/lib/netstandard1.6/Microsoft.AI.PerfCounterCollector.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1/lib/netstandard1.6/Microsoft.AI.PerfCounterCollector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.5.1/lib/netstandard1.6/Microsoft.AI.PerfCounterCollector.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.Web.2.5.1/Microsoft.ApplicationInsights.Web.2.5.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.Web.2.5.1/Microsoft.ApplicationInsights.Web.2.5.1.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.Web.2.5.1/content/net45/ApplicationInsights.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.Web.2.5.1/content/net45/ApplicationInsights.config.install.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.Web.2.5.1/content/net45/ApplicationInsights.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.Web.2.5.1/content/net45/ApplicationInsights.config.transform -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.Web.2.5.1/content/net45/ApplicationInsights.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.Web.2.5.1/content/net45/ApplicationInsights.config.uninstall.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.Web.2.5.1/content/net45/web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.Web.2.5.1/content/net45/web.config.install.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.Web.2.5.1/content/net45/web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.Web.2.5.1/content/net45/web.config.uninstall.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.Web.2.5.1/lib/net45/Microsoft.AI.Web.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.Web.2.5.1/lib/net45/Microsoft.AI.Web.XML -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.Web.2.5.1/lib/net45/Microsoft.AI.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.Web.2.5.1/lib/net45/Microsoft.AI.Web.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.2.5.1/Microsoft.ApplicationInsights.WindowsServer.2.5.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.2.5.1/Microsoft.ApplicationInsights.WindowsServer.2.5.1.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.2.5.1/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.2.5.1/Tools/install.ps1 -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.2.5.1/content/ApplicationInsights.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.2.5.1/content/ApplicationInsights.config.install.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.2.5.1/content/ApplicationInsights.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.2.5.1/content/ApplicationInsights.config.transform -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.2.5.1/content/ApplicationInsights.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.2.5.1/content/ApplicationInsights.config.uninstall.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.2.5.1/lib/net45/Microsoft.AI.WindowsServer.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.2.5.1/lib/net45/Microsoft.AI.WindowsServer.XML -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.2.5.1/lib/net45/Microsoft.AI.WindowsServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.2.5.1/lib/net45/Microsoft.AI.WindowsServer.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.5.1/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.5.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.5.1/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.5.1.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.5.1/content/ApplicationInsights.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.5.1/content/ApplicationInsights.config.install.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.5.1/content/ApplicationInsights.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.5.1/content/ApplicationInsights.config.transform -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.5.1/content/ApplicationInsights.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.5.1/content/ApplicationInsights.config.uninstall.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.5.1/lib/net45/Microsoft.AI.ServerTelemetryChannel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.5.1/lib/net45/Microsoft.AI.ServerTelemetryChannel.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.5.1/lib/netstandard1.3/Microsoft.AI.ServerTelemetryChannel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.5.1/lib/netstandard1.3/Microsoft.AI.ServerTelemetryChannel.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.Cors.5.0.0/Microsoft.AspNet.Cors.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.Cors.5.0.0/Microsoft.AspNet.Cors.5.0.0.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.Cors.5.0.0/lib/net45/System.Web.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.Cors.5.0.0/lib/net45/System.Web.Cors.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.Mvc.5.2.4/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.Mvc.5.2.4/Content/Web.config.install.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.Mvc.5.2.4/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.Mvc.5.2.4/Content/Web.config.uninstall.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.Mvc.5.2.4/Microsoft.AspNet.Mvc.5.2.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.Mvc.5.2.4/Microsoft.AspNet.Mvc.5.2.4.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.Mvc.5.2.4/lib/net45/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.Mvc.5.2.4/lib/net45/System.Web.Mvc.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.Mvc.5.2.4/lib/net45/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.Mvc.5.2.4/lib/net45/System.Web.Mvc.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.Razor.3.2.4/Microsoft.AspNet.Razor.3.2.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.Razor.3.2.4/Microsoft.AspNet.Razor.3.2.4.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.Razor.3.2.4/lib/net45/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.Razor.3.2.4/lib/net45/System.Web.Razor.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.Razor.3.2.4/lib/net45/System.Web.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.Razor.3.2.4/lib/net45/System.Web.Razor.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.SignalR.2.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.SignalR.2.3.0/.signature.p7s -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.SignalR.2.3.0/Microsoft.AspNet.SignalR.2.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.SignalR.2.3.0/Microsoft.AspNet.SignalR.2.3.0.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.SignalR.2.3.0/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.SignalR.2.3.0/readme.txt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.SignalR.Core.2.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.SignalR.Core.2.3.0/.signature.p7s -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.SignalR.Core.2.3.0/Microsoft.AspNet.SignalR.Core.2.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.SignalR.Core.2.3.0/Microsoft.AspNet.SignalR.Core.2.3.0.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.SignalR.Core.2.3.0/lib/net45/Microsoft.AspNet.SignalR.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.SignalR.Core.2.3.0/lib/net45/Microsoft.AspNet.SignalR.Core.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.SignalR.Core.2.3.0/lib/net45/Microsoft.AspNet.SignalR.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.SignalR.Core.2.3.0/lib/net45/Microsoft.AspNet.SignalR.Core.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.SignalR.JS.2.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.SignalR.JS.2.3.0/.signature.p7s -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.SignalR.JS.2.3.0/Microsoft.AspNet.SignalR.JS.2.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.SignalR.JS.2.3.0/Microsoft.AspNet.SignalR.JS.2.3.0.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.SignalR.SystemWeb.2.3.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.SignalR.SystemWeb.2.3.0/.signature.p7s -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.SignalR.SystemWeb.2.3.0/Microsoft.AspNet.SignalR.SystemWeb.2.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.SignalR.SystemWeb.2.3.0/Microsoft.AspNet.SignalR.SystemWeb.2.3.0.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.SignalR.SystemWeb.2.3.0/lib/net45/Microsoft.AspNet.SignalR.SystemWeb.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.SignalR.SystemWeb.2.3.0/lib/net45/Microsoft.AspNet.SignalR.SystemWeb.XML -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.SignalR.SystemWeb.2.3.0/lib/net45/Microsoft.AspNet.SignalR.SystemWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.SignalR.SystemWeb.2.3.0/lib/net45/Microsoft.AspNet.SignalR.SystemWeb.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.TelemetryCorrelation.1.0.0/Microsoft.AspNet.TelemetryCorrelation.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.TelemetryCorrelation.1.0.0/Microsoft.AspNet.TelemetryCorrelation.1.0.0.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.TelemetryCorrelation.1.0.0/content/net45/web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.TelemetryCorrelation.1.0.0/content/net45/web.config.install.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.TelemetryCorrelation.1.0.0/content/net45/web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.TelemetryCorrelation.1.0.0/content/net45/web.config.uninstall.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.TelemetryCorrelation.1.0.0/lib/net45/Microsoft.AspNet.TelemetryCorrelation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.TelemetryCorrelation.1.0.0/lib/net45/Microsoft.AspNet.TelemetryCorrelation.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.TelemetryCorrelation.1.0.0/lib/net45/Microsoft.AspNet.TelemetryCorrelation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.TelemetryCorrelation.1.0.0/lib/net45/Microsoft.AspNet.TelemetryCorrelation.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.Web.Optimization.1.1.3/Microsoft.AspNet.Web.Optimization.1.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.Web.Optimization.1.1.3/Microsoft.AspNet.Web.Optimization.1.1.3.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/System.Web.Optimization.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/system.web.optimization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/system.web.optimization.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/Content/Web.config.install.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/Content/Web.config.uninstall.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/Microsoft.AspNet.WebPages.3.2.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/Microsoft.AspNet.WebPages.3.2.4.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/lib/net45/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/lib/net45/System.Web.Helpers.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/lib/net45/System.Web.Helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/lib/net45/System.Web.Helpers.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/lib/net45/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/lib/net45/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/lib/net45/System.Web.WebPages.Deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/lib/net45/System.Web.WebPages.Deployment.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/lib/net45/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/lib/net45/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/lib/net45/System.Web.WebPages.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/lib/net45/System.Web.WebPages.Razor.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/lib/net45/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/lib/net45/System.Web.WebPages.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/lib/net45/System.Web.WebPages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.AspNet.WebPages.3.2.4/lib/net45/System.Web.WebPages.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/.signature.p7s -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/build/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/build/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/build/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/build/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/build/net46/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/build/net46/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/build/net46/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/build/net46/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/content/net45/app.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/content/net45/app.config.install.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/content/net45/app.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/content/net45/app.config.uninstall.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/content/net45/web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/content/net45/web.config.install.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/content/net45/web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/content/net45/web.config.uninstall.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/content/net46/app.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/content/net46/app.config.install.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/content/net46/app.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/content/net46/app.config.uninstall.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/content/net46/web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/content/net46/web.config.install.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/content/net46/web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/content/net46/web.config.uninstall.xdt -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.Build.Tasks.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.Build.Tasks.CodeAnalysis.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.CSharp.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.CSharp.Core.targets -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.DiaSymReader.Native.amd64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.DiaSymReader.Native.amd64.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.DiaSymReader.Native.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.DiaSymReader.Native.x86.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.VisualBasic.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/Microsoft.VisualBasic.Core.targets -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/System.AppContext.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/VBCSCompiler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/VBCSCompiler.exe -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/VBCSCompiler.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/VBCSCompiler.exe.config -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/csc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/csc.exe -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/csc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/csc.exe.config -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/csc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/csc.rsp -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/csi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/csi.exe -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/csi.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/csi.rsp -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/vbc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/vbc.exe -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/vbc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/vbc.exe.config -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/vbc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/Roslyn45/vbc.rsp -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.Build.Tasks.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.Build.Tasks.CodeAnalysis.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.CSharp.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.CSharp.Core.targets -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.DiaSymReader.Native.amd64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.DiaSymReader.Native.amd64.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.DiaSymReader.Native.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.DiaSymReader.Native.x86.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.Managed.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.Managed.Core.targets -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.VisualBasic.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/Microsoft.VisualBasic.Core.targets -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.AppContext.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Console.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Console.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Diagnostics.FileVersionInfo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Diagnostics.FileVersionInfo.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.IO.Compression.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.IO.Compression.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.IO.Pipes.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.IO.Pipes.AccessControl.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.IO.Pipes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.IO.Pipes.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Security.AccessControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Security.AccessControl.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Security.Claims.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Security.Claims.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Security.Cryptography.Algorithms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Security.Cryptography.Algorithms.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Security.Cryptography.Encoding.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Security.Cryptography.Encoding.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Security.Cryptography.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Security.Cryptography.Primitives.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Security.Cryptography.X509Certificates.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Security.Cryptography.X509Certificates.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Security.Principal.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Security.Principal.Windows.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Text.Encoding.CodePages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Text.Encoding.CodePages.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.ValueTuple.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Xml.ReaderWriter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Xml.ReaderWriter.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Xml.XPath.XDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Xml.XPath.XDocument.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Xml.XPath.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Xml.XPath.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Xml.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/System.Xml.XmlDocument.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/VBCSCompiler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/VBCSCompiler.exe -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/VBCSCompiler.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/VBCSCompiler.exe.config -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/csc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/csc.exe -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/csc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/csc.exe.config -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/csc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/csc.rsp -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/csi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/csi.exe -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/csi.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/csi.exe.config -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/csi.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/csi.rsp -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/vbc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/vbc.exe -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/vbc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/vbc.exe.config -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/vbc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/RoslynLatest/vbc.rsp -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/net45/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/net45/install.ps1 -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/net45/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.0/tools/net45/uninstall.ps1 -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.Owin.4.0.0/Microsoft.Owin.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.Owin.4.0.0/Microsoft.Owin.4.0.0.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.Owin.4.0.0/lib/net451/Microsoft.Owin.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.Owin.4.0.0/lib/net451/Microsoft.Owin.XML -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.Owin.4.0.0/lib/net451/Microsoft.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.Owin.4.0.0/lib/net451/Microsoft.Owin.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.Owin.Cors.4.0.0/Microsoft.Owin.Cors.4.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.Owin.Cors.4.0.0/Microsoft.Owin.Cors.4.0.0.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.Owin.Cors.4.0.0/lib/net451/Microsoft.Owin.Cors.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.Owin.Cors.4.0.0/lib/net451/Microsoft.Owin.Cors.XML -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.Owin.Cors.4.0.0/lib/net451/Microsoft.Owin.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.Owin.Cors.4.0.0/lib/net451/Microsoft.Owin.Cors.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.Owin.Host.SystemWeb.2.1.0/Microsoft.Owin.Host.SystemWeb.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.Owin.Host.SystemWeb.2.1.0/Microsoft.Owin.Host.SystemWeb.2.1.0.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.Owin.Host.SystemWeb.2.1.0/lib/net40/Microsoft.Owin.Host.SystemWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.Owin.Host.SystemWeb.2.1.0/lib/net40/Microsoft.Owin.Host.SystemWeb.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.Owin.Host.SystemWeb.2.1.0/lib/net40/Microsoft.Owin.Host.SystemWeb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.Owin.Host.SystemWeb.2.1.0/lib/net40/Microsoft.Owin.Host.SystemWeb.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.Owin.Host.SystemWeb.2.1.0/lib/net45/Microsoft.Owin.Host.SystemWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.Owin.Host.SystemWeb.2.1.0/lib/net45/Microsoft.Owin.Host.SystemWeb.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.Owin.Host.SystemWeb.2.1.0/lib/net45/Microsoft.Owin.Host.SystemWeb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.Owin.Host.SystemWeb.2.1.0/lib/net45/Microsoft.Owin.Host.SystemWeb.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.Owin.Security.2.1.0/Microsoft.Owin.Security.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.Owin.Security.2.1.0/Microsoft.Owin.Security.2.1.0.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.Owin.Security.2.1.0/lib/net45/Microsoft.Owin.Security.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.Owin.Security.2.1.0/lib/net45/Microsoft.Owin.Security.XML -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.Owin.Security.2.1.0/lib/net45/Microsoft.Owin.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.Owin.Security.2.1.0/lib/net45/Microsoft.Owin.Security.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.4/Microsoft.jQuery.Unobtrusive.Validation.3.2.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Microsoft.jQuery.Unobtrusive.Validation.3.2.4/Microsoft.jQuery.Unobtrusive.Validation.3.2.4.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Modernizr.2.8.3/Modernizr.2.8.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Modernizr.2.8.3/Modernizr.2.8.3.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Modernizr.2.8.3/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Modernizr.2.8.3/Tools/common.ps1 -------------------------------------------------------------------------------- /example/aspnet/packages/Modernizr.2.8.3/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Modernizr.2.8.3/Tools/install.ps1 -------------------------------------------------------------------------------- /example/aspnet/packages/Modernizr.2.8.3/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Modernizr.2.8.3/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/LICENSE.md -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/Newtonsoft.Json.11.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/Newtonsoft.Json.11.0.1.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/portable-net40%2Bsl5%2Bwin8%2Bwp8%2Bwpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/portable-net40%2Bsl5%2Bwin8%2Bwp8%2Bwpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/portable-net40%2Bsl5%2Bwin8%2Bwp8%2Bwpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/portable-net40%2Bsl5%2Bwin8%2Bwp8%2Bwpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/portable-net45%2Bwin8%2Bwp8%2Bwpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/portable-net45%2Bwin8%2Bwp8%2Bwpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/portable-net45%2Bwin8%2Bwp8%2Bwpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Newtonsoft.Json.11.0.1/lib/portable-net45%2Bwin8%2Bwp8%2Bwpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /example/aspnet/packages/Owin.1.0/Owin.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Owin.1.0/Owin.1.0.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/Owin.1.0/lib/net40/Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/Owin.1.0/lib/net40/Owin.dll -------------------------------------------------------------------------------- /example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/LICENSE.TXT -------------------------------------------------------------------------------- /example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/System.Diagnostics.DiagnosticSource.4.4.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/System.Diagnostics.DiagnosticSource.4.4.1.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/THIRD-PARTY-NOTICES.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/THIRD-PARTY-NOTICES.TXT -------------------------------------------------------------------------------- /example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/net45/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/net45/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/net45/System.Diagnostics.DiagnosticSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/net45/System.Diagnostics.DiagnosticSource.xml -------------------------------------------------------------------------------- /example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/net46/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/net46/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/net46/System.Diagnostics.DiagnosticSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/net46/System.Diagnostics.DiagnosticSource.xml -------------------------------------------------------------------------------- /example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml -------------------------------------------------------------------------------- /example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml -------------------------------------------------------------------------------- /example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/portable-net45%2Bwin8%2Bwpa81/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/portable-net45%2Bwin8%2Bwpa81/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/portable-net45%2Bwin8%2Bwpa81/System.Diagnostics.DiagnosticSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/lib/portable-net45%2Bwin8%2Bwpa81/System.Diagnostics.DiagnosticSource.xml -------------------------------------------------------------------------------- /example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/ref/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/useSharedDesignerContext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/aspnet/packages/System.Diagnostics.DiagnosticSource.4.4.1/version.txt: -------------------------------------------------------------------------------- 1 | 8321c729934c0f8be754953439b88e6e1c120c24 2 | -------------------------------------------------------------------------------- /example/aspnet/packages/WebGrease.1.6.0/WebGrease.1.6.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/WebGrease.1.6.0/WebGrease.1.6.0.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/WebGrease.1.6.0/lib/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/WebGrease.1.6.0/lib/WebGrease.dll -------------------------------------------------------------------------------- /example/aspnet/packages/WebGrease.1.6.0/tools/WG.EXE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/WebGrease.1.6.0/tools/WG.EXE -------------------------------------------------------------------------------- /example/aspnet/packages/bootstrap.3.3.7/bootstrap.3.3.7.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/bootstrap.3.3.7/bootstrap.3.3.7.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/bootstrap.3.3.7/content/Content/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/bootstrap.3.3.7/content/Content/bootstrap-theme.css -------------------------------------------------------------------------------- /example/aspnet/packages/bootstrap.3.3.7/content/Content/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/bootstrap.3.3.7/content/Content/bootstrap-theme.min.css -------------------------------------------------------------------------------- /example/aspnet/packages/bootstrap.3.3.7/content/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/bootstrap.3.3.7/content/Content/bootstrap.css -------------------------------------------------------------------------------- /example/aspnet/packages/bootstrap.3.3.7/content/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/bootstrap.3.3.7/content/Content/bootstrap.min.css -------------------------------------------------------------------------------- /example/aspnet/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /example/aspnet/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /example/aspnet/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /example/aspnet/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /example/aspnet/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/bootstrap.3.3.7/content/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /example/aspnet/packages/jQuery.3.3.1/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/jQuery.3.3.1/Tools/common.ps1 -------------------------------------------------------------------------------- /example/aspnet/packages/jQuery.3.3.1/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/jQuery.3.3.1/Tools/install.ps1 -------------------------------------------------------------------------------- /example/aspnet/packages/jQuery.3.3.1/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/jQuery.3.3.1/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /example/aspnet/packages/jQuery.3.3.1/jQuery.3.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/jQuery.3.3.1/jQuery.3.3.1.nupkg -------------------------------------------------------------------------------- /example/aspnet/packages/jQuery.Validation.1.17.0/jQuery.Validation.1.17.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/example/aspnet/packages/jQuery.Validation.1.17.0/jQuery.Validation.1.17.0.nupkg -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './ngx-signalr-hubservice'; 2 | -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- 1 | export * from './ngx-signalr-hubservice' -------------------------------------------------------------------------------- /ngx-signalr-hubservice.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/ngx-signalr-hubservice.d.ts -------------------------------------------------------------------------------- /ngx-signalr-hubservice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/ngx-signalr-hubservice.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stephen-moyer/ngx-signalr-hubservice/HEAD/tsconfig.json --------------------------------------------------------------------------------