├── .gitattributes ├── .gitignore ├── SignalrBackendService.sln ├── SignalrBackendService ├── Profiles │ └── sitepointsignalProduction.azurePubxml ├── ServiceConfiguration.Cloud.cscfg ├── ServiceConfiguration.Local.cscfg ├── ServiceDefinition.csdef ├── SignalrBackendService.ccproj └── SignalrWebServiceContent │ └── diagnostics.wadcfg ├── SignalrWebService.Tests ├── App.config ├── Controllers │ └── ValuesControllerTest.cs ├── Properties │ └── AssemblyInfo.cs ├── SignalrWebService.Tests.csproj └── packages.config ├── SignalrWebService ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.cs ├── Areas │ └── HelpPage │ │ ├── ApiDescriptionExtensions.cs │ │ ├── App_Start │ │ └── HelpPageConfig.cs │ │ ├── Controllers │ │ └── HelpController.cs │ │ ├── HelpPage.css │ │ ├── HelpPageAreaRegistration.cs │ │ ├── HelpPageConfigurationExtensions.cs │ │ ├── Models │ │ └── HelpPageApiModel.cs │ │ ├── SampleGeneration │ │ ├── HelpPageSampleGenerator.cs │ │ ├── HelpPageSampleKey.cs │ │ ├── ImageSample.cs │ │ ├── InvalidSample.cs │ │ ├── ObjectGenerator.cs │ │ ├── SampleDirection.cs │ │ └── TextSample.cs │ │ ├── Views │ │ ├── Help │ │ │ ├── Api.cshtml │ │ │ ├── DisplayTemplates │ │ │ │ ├── ApiGroup.cshtml │ │ │ │ ├── HelpPageApiModel.cshtml │ │ │ │ ├── ImageSample.cshtml │ │ │ │ ├── InvalidSample.cshtml │ │ │ │ ├── Parameters.cshtml │ │ │ │ ├── Samples.cshtml │ │ │ │ └── TextSample.cshtml │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ │ └── XmlDocumentationProvider.cs ├── Content │ ├── Site.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ └── bootstrap.min.css ├── Controllers │ ├── HomeController.cs │ └── ValuesController.cs ├── Global.asax ├── Global.asax.cs ├── Hubs │ ├── CommunicationHub.cs │ ├── LoggingHub.cs │ └── PerformanceHub.cs ├── Models │ ├── LoggingModel.cs │ └── PerformanceModel.cs ├── Performance │ └── PerformanceEngine.cs ├── Project_Readme.html ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── _references.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery-1.10.2.intellisense.js │ ├── jquery-1.10.2.js │ ├── jquery-1.10.2.min.js │ ├── jquery-1.10.2.min.map │ ├── jquery.signalR-2.1.2.js │ ├── jquery.signalR-2.1.2.min.js │ ├── modernizr-2.6.2.js │ ├── respond.js │ └── respond.min.js ├── SignalrWebService.csproj ├── Startup.cs ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── WebRole.cs ├── favicon.ico ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff └── packages.config └── packages ├── Antlr.3.4.1.9004 ├── Antlr.3.4.1.9004.nupkg ├── Antlr.3.4.1.9004.nuspec └── lib │ └── Antlr3.Runtime.dll ├── Microsoft.AspNet.Cors.5.2.2 ├── Microsoft.AspNet.Cors.5.2.2.nupkg ├── Microsoft.AspNet.Cors.5.2.2.nuspec └── lib │ └── net45 │ └── System.Web.Cors.dll ├── Microsoft.AspNet.Mvc.5.0.0 ├── Microsoft.AspNet.Mvc.5.0.0.nupkg ├── Microsoft.AspNet.Mvc.5.0.0.nuspec └── lib │ └── net45 │ ├── System.Web.Mvc.dll │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Razor.3.0.0 ├── Microsoft.AspNet.Razor.3.0.0.nupkg ├── Microsoft.AspNet.Razor.3.0.0.nuspec └── lib │ └── net45 │ ├── System.Web.Razor.dll │ └── System.Web.Razor.xml ├── Microsoft.AspNet.SignalR.2.1.2 ├── Microsoft.AspNet.SignalR.2.1.2.nupkg ├── Microsoft.AspNet.SignalR.2.1.2.nuspec └── readme.txt ├── Microsoft.AspNet.SignalR.Core.2.1.2 ├── Microsoft.AspNet.SignalR.Core.2.1.2.nupkg ├── Microsoft.AspNet.SignalR.Core.2.1.2.nuspec └── lib │ └── net45 │ ├── Microsoft.AspNet.SignalR.Core.dll │ └── Microsoft.AspNet.SignalR.Core.xml ├── Microsoft.AspNet.SignalR.JS.2.1.2 ├── Microsoft.AspNet.SignalR.JS.2.1.2.nupkg ├── Microsoft.AspNet.SignalR.JS.2.1.2.nuspec └── content │ └── Scripts │ ├── jquery.signalR-2.1.2.js │ └── jquery.signalR-2.1.2.min.js ├── Microsoft.AspNet.SignalR.SystemWeb.2.1.2 ├── Microsoft.AspNet.SignalR.SystemWeb.2.1.2.nupkg ├── Microsoft.AspNet.SignalR.SystemWeb.2.1.2.nuspec └── lib │ └── net45 │ ├── Microsoft.AspNet.SignalR.SystemWeb.XML │ └── Microsoft.AspNet.SignalR.SystemWeb.dll ├── Microsoft.AspNet.Web.Optimization.1.1.1 ├── Microsoft.AspNet.Web.Optimization.1.1.1.nupkg ├── Microsoft.AspNet.Web.Optimization.1.1.1.nuspec └── lib │ └── net40 │ ├── System.Web.Optimization.dll │ └── system.web.optimization.xml ├── Microsoft.AspNet.WebApi.5.2.2 ├── Microsoft.AspNet.WebApi.5.2.2.nupkg └── Microsoft.AspNet.WebApi.5.2.2.nuspec ├── Microsoft.AspNet.WebApi.Client.5.0.0 ├── Microsoft.AspNet.WebApi.Client.5.0.0.nupkg ├── Microsoft.AspNet.WebApi.Client.5.0.0.nuspec └── lib │ ├── net45 │ ├── System.Net.Http.Formatting.dll │ └── System.Net.Http.Formatting.xml │ ├── portable-wp8%2Bnetcore45%2Bnet45 │ ├── System.Net.Http.Formatting.dll │ └── System.Net.Http.Formatting.xml │ └── portable-wp8+netcore45+net45 │ ├── System.Net.Http.Formatting.dll │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Client.5.2.2 ├── Microsoft.AspNet.WebApi.Client.5.2.2.nupkg ├── Microsoft.AspNet.WebApi.Client.5.2.2.nuspec └── lib │ ├── net45 │ ├── System.Net.Http.Formatting.dll │ └── System.Net.Http.Formatting.xml │ └── portable-wp8+netcore45+net45+wp81+wpa81 │ ├── System.Net.Http.Formatting.dll │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Core.5.0.0 ├── Microsoft.AspNet.WebApi.Core.5.0.0.nupkg ├── Microsoft.AspNet.WebApi.Core.5.0.0.nuspec ├── content │ └── web.config.transform └── lib │ └── net45 │ ├── System.Web.Http.dll │ └── System.Web.Http.xml ├── Microsoft.AspNet.WebApi.Core.5.2.2 ├── Content │ └── web.config.transform ├── Microsoft.AspNet.WebApi.Core.5.2.2.nupkg ├── Microsoft.AspNet.WebApi.Core.5.2.2.nuspec └── lib │ └── net45 │ ├── System.Web.Http.dll │ └── System.Web.Http.xml ├── Microsoft.AspNet.WebApi.Cors.5.2.2 ├── Microsoft.AspNet.WebApi.Cors.5.2.2.nupkg ├── Microsoft.AspNet.WebApi.Cors.5.2.2.nuspec └── lib │ └── net45 │ ├── System.Web.Http.Cors.dll │ └── System.Web.Http.Cors.xml ├── Microsoft.AspNet.WebApi.HelpPage.5.0.0 ├── Microsoft.AspNet.WebApi.HelpPage.5.0.0.nupkg ├── Microsoft.AspNet.WebApi.HelpPage.5.0.0.nuspec └── content │ └── Areas │ └── HelpPage │ ├── ApiDescriptionExtensions.cs.pp │ ├── App_Start │ └── HelpPageConfig.cs.pp │ ├── Controllers │ └── HelpController.cs.pp │ ├── HelpPage.css.pp │ ├── HelpPageAreaRegistration.cs.pp │ ├── HelpPageConfigurationExtensions.cs.pp │ ├── Models │ └── HelpPageApiModel.cs.pp │ ├── SampleGeneration │ ├── HelpPageSampleGenerator.cs.pp │ ├── HelpPageSampleKey.cs.pp │ ├── ImageSample.cs.pp │ ├── InvalidSample.cs.pp │ ├── ObjectGenerator.cs.pp │ ├── SampleDirection.cs.pp │ └── TextSample.cs.pp │ ├── Views │ ├── Help │ │ ├── Api.cshtml.pp │ │ ├── DisplayTemplates │ │ │ ├── ApiGroup.cshtml.pp │ │ │ ├── HelpPageApiModel.cshtml.pp │ │ │ ├── ImageSample.cshtml.pp │ │ │ ├── InvalidSample.cshtml.pp │ │ │ ├── Parameters.cshtml.pp │ │ │ ├── Samples.cshtml.pp │ │ │ └── TextSample.cshtml.pp │ │ └── Index.cshtml.pp │ ├── Shared │ │ └── _Layout.cshtml.pp │ ├── Web.config │ └── _ViewStart.cshtml.pp │ └── XmlDocumentationProvider.cs.pp ├── Microsoft.AspNet.WebApi.WebHost.5.0.0 ├── Microsoft.AspNet.WebApi.WebHost.5.0.0.nupkg ├── Microsoft.AspNet.WebApi.WebHost.5.0.0.nuspec └── lib │ └── net45 │ ├── System.Web.Http.WebHost.dll │ └── System.Web.Http.WebHost.xml ├── Microsoft.AspNet.WebApi.WebHost.5.2.2 ├── Microsoft.AspNet.WebApi.WebHost.5.2.2.nupkg ├── Microsoft.AspNet.WebApi.WebHost.5.2.2.nuspec └── lib │ └── net45 │ ├── System.Web.Http.WebHost.dll │ └── System.Web.Http.WebHost.xml ├── Microsoft.AspNet.WebPages.3.0.0 ├── Microsoft.AspNet.WebPages.3.0.0.nupkg ├── Microsoft.AspNet.WebPages.3.0.0.nuspec └── 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.Data.Edm.5.6.0 ├── Microsoft.Data.Edm.5.6.0.nupkg ├── Microsoft.Data.Edm.5.6.0.nuspec └── lib │ ├── net40 │ ├── Microsoft.Data.Edm.dll │ ├── Microsoft.Data.Edm.xml │ ├── de │ │ └── Microsoft.Data.Edm.resources.dll │ ├── es │ │ └── Microsoft.Data.Edm.resources.dll │ ├── fr │ │ └── Microsoft.Data.Edm.resources.dll │ ├── it │ │ └── Microsoft.Data.Edm.resources.dll │ ├── ja │ │ └── Microsoft.Data.Edm.resources.dll │ ├── ko │ │ └── Microsoft.Data.Edm.resources.dll │ ├── ru │ │ └── Microsoft.Data.Edm.resources.dll │ ├── zh-Hans │ │ └── Microsoft.Data.Edm.resources.dll │ └── zh-Hant │ │ └── Microsoft.Data.Edm.resources.dll │ ├── portable-net40+sl5+wp8+win8 │ ├── Microsoft.Data.Edm.Portable.dll │ ├── Microsoft.Data.Edm.Portable.xml │ ├── de │ │ └── Microsoft.Data.Edm.Portable.resources.dll │ ├── es │ │ └── Microsoft.Data.Edm.Portable.resources.dll │ ├── fr │ │ └── Microsoft.Data.Edm.Portable.resources.dll │ ├── it │ │ └── Microsoft.Data.Edm.Portable.resources.dll │ ├── ja │ │ └── Microsoft.Data.Edm.Portable.resources.dll │ ├── ko │ │ └── Microsoft.Data.Edm.Portable.resources.dll │ ├── ru │ │ └── Microsoft.Data.Edm.Portable.resources.dll │ ├── zh-Hans │ │ └── Microsoft.Data.Edm.Portable.resources.dll │ └── zh-Hant │ │ └── Microsoft.Data.Edm.Portable.resources.dll │ └── sl4 │ ├── Microsoft.Data.Edm.SL.dll │ ├── Microsoft.Data.Edm.SL.xml │ ├── de │ └── Microsoft.Data.Edm.SL.resources.dll │ ├── es │ └── Microsoft.Data.Edm.SL.resources.dll │ ├── fr │ └── Microsoft.Data.Edm.SL.resources.dll │ ├── it │ └── Microsoft.Data.Edm.SL.resources.dll │ ├── ja │ └── Microsoft.Data.Edm.SL.resources.dll │ ├── ko │ └── Microsoft.Data.Edm.SL.resources.dll │ ├── ru │ └── Microsoft.Data.Edm.SL.resources.dll │ ├── zh-Hans │ └── Microsoft.Data.Edm.SL.resources.dll │ └── zh-Hant │ └── Microsoft.Data.Edm.SL.resources.dll ├── Microsoft.Data.OData.5.6.0 ├── Microsoft.Data.OData.5.6.0.nupkg ├── Microsoft.Data.OData.5.6.0.nuspec └── lib │ ├── net40 │ ├── Microsoft.Data.OData.dll │ ├── Microsoft.Data.OData.xml │ ├── de │ │ └── Microsoft.Data.OData.resources.dll │ ├── es │ │ └── Microsoft.Data.OData.resources.dll │ ├── fr │ │ └── Microsoft.Data.OData.resources.dll │ ├── it │ │ └── Microsoft.Data.OData.resources.dll │ ├── ja │ │ └── Microsoft.Data.OData.resources.dll │ ├── ko │ │ └── Microsoft.Data.OData.resources.dll │ ├── ru │ │ └── Microsoft.Data.OData.resources.dll │ ├── zh-Hans │ │ └── Microsoft.Data.OData.resources.dll │ └── zh-Hant │ │ └── Microsoft.Data.OData.resources.dll │ ├── portable-net40+sl5+wp8+win8 │ ├── Microsoft.Data.OData.Portable.dll │ ├── Microsoft.Data.OData.Portable.xml │ ├── de │ │ └── Microsoft.Data.OData.Portable.resources.dll │ ├── es │ │ └── Microsoft.Data.OData.Portable.resources.dll │ ├── fr │ │ └── Microsoft.Data.OData.Portable.resources.dll │ ├── it │ │ └── Microsoft.Data.OData.Portable.resources.dll │ ├── ja │ │ └── Microsoft.Data.OData.Portable.resources.dll │ ├── ko │ │ └── Microsoft.Data.OData.Portable.resources.dll │ ├── ru │ │ └── Microsoft.Data.OData.Portable.resources.dll │ ├── zh-Hans │ │ └── Microsoft.Data.OData.Portable.resources.dll │ └── zh-Hant │ │ └── Microsoft.Data.OData.Portable.resources.dll │ └── sl4 │ ├── Microsoft.Data.OData.SL.dll │ ├── Microsoft.Data.OData.SL.xml │ ├── de │ └── Microsoft.Data.OData.SL.resources.dll │ ├── es │ └── Microsoft.Data.OData.SL.resources.dll │ ├── fr │ └── Microsoft.Data.OData.SL.resources.dll │ ├── it │ └── Microsoft.Data.OData.SL.resources.dll │ ├── ja │ └── Microsoft.Data.OData.SL.resources.dll │ ├── ko │ └── Microsoft.Data.OData.SL.resources.dll │ ├── ru │ └── Microsoft.Data.OData.SL.resources.dll │ ├── zh-Hans │ └── Microsoft.Data.OData.SL.resources.dll │ └── zh-Hant │ └── Microsoft.Data.OData.SL.resources.dll ├── Microsoft.Data.Services.Client.5.6.0 ├── Microsoft.Data.Services.Client.5.6.0.nupkg ├── Microsoft.Data.Services.Client.5.6.0.nuspec └── lib │ ├── net40 │ ├── Microsoft.Data.Services.Client.dll │ ├── Microsoft.Data.Services.Client.xml │ ├── de │ │ └── Microsoft.Data.Services.Client.resources.dll │ ├── es │ │ └── Microsoft.Data.Services.Client.resources.dll │ ├── fr │ │ └── Microsoft.Data.Services.Client.resources.dll │ ├── it │ │ └── Microsoft.Data.Services.Client.resources.dll │ ├── ja │ │ └── Microsoft.Data.Services.Client.resources.dll │ ├── ko │ │ └── Microsoft.Data.Services.Client.resources.dll │ ├── ru │ │ └── Microsoft.Data.Services.Client.resources.dll │ ├── zh-Hans │ │ └── Microsoft.Data.Services.Client.resources.dll │ └── zh-Hant │ │ └── Microsoft.Data.Services.Client.resources.dll │ ├── portable-net45+sl5+wp8+win8 │ ├── Microsoft.Data.Services.Client.Portable.dll │ ├── Microsoft.Data.Services.Client.Portable.xml │ ├── de │ │ └── Microsoft.Data.Services.Client.Portable.resources.dll │ ├── es │ │ └── Microsoft.Data.Services.Client.Portable.resources.dll │ ├── fr │ │ └── Microsoft.Data.Services.Client.Portable.resources.dll │ ├── it │ │ └── Microsoft.Data.Services.Client.Portable.resources.dll │ ├── ja │ │ └── Microsoft.Data.Services.Client.Portable.resources.dll │ ├── ko │ │ └── Microsoft.Data.Services.Client.Portable.resources.dll │ ├── ru │ │ └── Microsoft.Data.Services.Client.Portable.resources.dll │ ├── zh-Hans │ │ └── Microsoft.Data.Services.Client.Portable.resources.dll │ └── zh-Hant │ │ └── Microsoft.Data.Services.Client.Portable.resources.dll │ └── sl4 │ ├── Microsoft.Data.Services.Client.SL.dll │ ├── Microsoft.Data.Services.Client.SL.xml │ ├── de │ └── Microsoft.Data.Services.Client.SL.resources.dll │ ├── es │ └── Microsoft.Data.Services.Client.SL.resources.dll │ ├── fr │ └── Microsoft.Data.Services.Client.SL.resources.dll │ ├── it │ └── Microsoft.Data.Services.Client.SL.resources.dll │ ├── ja │ └── Microsoft.Data.Services.Client.SL.resources.dll │ ├── ko │ └── Microsoft.Data.Services.Client.SL.resources.dll │ ├── ru │ └── Microsoft.Data.Services.Client.SL.resources.dll │ ├── zh-Hans │ └── Microsoft.Data.Services.Client.SL.resources.dll │ └── zh-Hant │ └── Microsoft.Data.Services.Client.SL.resources.dll ├── Microsoft.Owin.3.0.0 ├── Microsoft.Owin.3.0.0.nupkg ├── Microsoft.Owin.3.0.0.nuspec └── lib │ └── net45 │ ├── Microsoft.Owin.XML │ └── Microsoft.Owin.dll ├── Microsoft.Owin.Cors.3.0.0 ├── Microsoft.Owin.Cors.3.0.0.nupkg ├── Microsoft.Owin.Cors.3.0.0.nuspec └── lib │ └── net45 │ ├── Microsoft.Owin.Cors.XML │ └── Microsoft.Owin.Cors.dll ├── Microsoft.Owin.Host.SystemWeb.2.0.2 ├── Microsoft.Owin.Host.SystemWeb.2.0.2.nupkg ├── Microsoft.Owin.Host.SystemWeb.2.0.2.nuspec └── 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.0.2 ├── Microsoft.Owin.Security.2.0.2.nupkg ├── Microsoft.Owin.Security.2.0.2.nuspec └── 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 ├── Microsoft.Web.Infrastructure.1.0.0.0.nuspec └── lib │ └── net40 │ └── Microsoft.Web.Infrastructure.dll ├── Microsoft.WindowsAzure.ConfigurationManager.2.0.3 ├── Microsoft.WindowsAzure.ConfigurationManager.2.0.3.nupkg ├── Microsoft.WindowsAzure.ConfigurationManager.2.0.3.nuspec └── lib │ └── net40 │ ├── Microsoft.WindowsAzure.Configuration.dll │ └── Microsoft.WindowsAzure.Configuration.xml ├── Modernizr.2.6.2 ├── Content │ └── Scripts │ │ └── modernizr-2.6.2.js ├── Modernizr.2.6.2.nupkg ├── Modernizr.2.6.2.nuspec └── Tools │ ├── common.ps1 │ ├── install.ps1 │ └── uninstall.ps1 ├── Newtonsoft.Json.5.0.6 ├── Newtonsoft.Json.5.0.6.nupkg ├── Newtonsoft.Json.5.0.6.nuspec └── 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 │ ├── netcore45 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── portable-net40%2Bsl4%2Bwp7%2Bwin8 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl4+wp7+win8 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── portable-net45%2Bwp80%2Bwin8 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ └── portable-net45+wp80+win8 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml ├── Newtonsoft.Json.6.0.5 ├── Newtonsoft.Json.6.0.5.nupkg ├── Newtonsoft.Json.6.0.5.nuspec ├── 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 │ ├── netcore45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl5+wp80+win8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── portable-net45+wp80+win8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml └── tools │ └── install.ps1 ├── Owin.1.0 ├── Owin.1.0.nupkg ├── Owin.1.0.nuspec └── lib │ └── net40 │ └── Owin.dll ├── Respond.1.2.0 ├── Respond.1.2.0.nupkg ├── Respond.1.2.0.nuspec └── content │ └── Scripts │ ├── respond.js │ └── respond.min.js ├── System.Spatial.5.6.0 ├── System.Spatial.5.6.0.nupkg ├── System.Spatial.5.6.0.nuspec └── lib │ ├── net40 │ ├── System.Spatial.dll │ ├── System.Spatial.xml │ ├── de │ │ └── System.Spatial.resources.dll │ ├── es │ │ └── System.Spatial.resources.dll │ ├── fr │ │ └── System.Spatial.resources.dll │ ├── it │ │ └── System.Spatial.resources.dll │ ├── ja │ │ └── System.Spatial.resources.dll │ ├── ko │ │ └── System.Spatial.resources.dll │ ├── ru │ │ └── System.Spatial.resources.dll │ ├── zh-Hans │ │ └── System.Spatial.resources.dll │ └── zh-Hant │ │ └── System.Spatial.resources.dll │ ├── portable-net40+sl5+wp8+win8 │ ├── System.Spatial.Portable.dll │ ├── System.Spatial.Portable.xml │ ├── de │ │ └── System.Spatial.Portable.resources.dll │ ├── es │ │ └── System.Spatial.Portable.resources.dll │ ├── fr │ │ └── System.Spatial.Portable.resources.dll │ ├── it │ │ └── System.Spatial.Portable.resources.dll │ ├── ja │ │ └── System.Spatial.Portable.resources.dll │ ├── ko │ │ └── System.Spatial.Portable.resources.dll │ ├── ru │ │ └── System.Spatial.Portable.resources.dll │ ├── zh-Hans │ │ └── System.Spatial.Portable.resources.dll │ └── zh-Hant │ │ └── System.Spatial.Portable.resources.dll │ └── sl4 │ ├── System.Spatial.SL.dll │ ├── System.Spatial.SL.xml │ ├── de │ └── System.Spatial.SL.resources.dll │ ├── es │ └── System.Spatial.SL.resources.dll │ ├── fr │ └── System.Spatial.SL.resources.dll │ ├── it │ └── System.Spatial.SL.resources.dll │ ├── ja │ └── System.Spatial.SL.resources.dll │ ├── ko │ └── System.Spatial.SL.resources.dll │ ├── ru │ └── System.Spatial.SL.resources.dll │ ├── zh-Hans │ └── System.Spatial.SL.resources.dll │ └── zh-Hant │ └── System.Spatial.SL.resources.dll ├── WebGrease.1.5.2 ├── WebGrease.1.5.2.nupkg ├── WebGrease.1.5.2.nuspec ├── lib │ └── WebGrease.dll └── tools │ └── WG.exe ├── WindowsAzure.Storage.3.0.3.0 ├── WindowsAzure.Storage.3.0.3.0.nupkg ├── WindowsAzure.Storage.3.0.3.0.nuspec └── lib │ └── net40 │ ├── Microsoft.WindowsAzure.Storage.dll │ └── Microsoft.WindowsAzure.Storage.xml ├── bootstrap.3.0.0 ├── bootstrap.3.0.0.nupkg ├── bootstrap.3.0.0.nuspec └── content │ ├── Content │ ├── bootstrap.css │ └── bootstrap.min.css │ ├── Scripts │ ├── bootstrap.js │ └── bootstrap.min.js │ └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── jQuery.1.10.2 ├── Content │ └── Scripts │ │ ├── jquery-1.10.2-vsdoc.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ └── jquery-1.10.2.min.map ├── Tools │ ├── common.ps1 │ ├── install.ps1 │ ├── jquery-1.10.2.intellisense.js │ └── uninstall.ps1 ├── jQuery.1.10.2.nupkg └── jQuery.1.10.2.nuspec └── repositories.config /SignalrBackendService.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2013 4 | VisualStudioVersion = 12.0.30110.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{CC5FD16D-436D-48AD-A40C-5A424C6E3E79}") = "SignalrBackendService", "SignalrBackendService\SignalrBackendService.ccproj", "{0B8DE434-404D-4FBC-BE25-04DE3E0F4AE6}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SignalrWebService", "SignalrWebService\SignalrWebService.csproj", "{3D5B4553-84A2-4DB1-BBB4-42E7D8473143}" 9 | EndProject 10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SignalrWebService.Tests", "SignalrWebService.Tests\SignalrWebService.Tests.csproj", "{99584D3D-FE5A-44CF-A257-7DB1F1C51781}" 11 | EndProject 12 | Global 13 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 14 | Debug|Any CPU = Debug|Any CPU 15 | Release|Any CPU = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 18 | {0B8DE434-404D-4FBC-BE25-04DE3E0F4AE6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 19 | {0B8DE434-404D-4FBC-BE25-04DE3E0F4AE6}.Debug|Any CPU.Build.0 = Debug|Any CPU 20 | {0B8DE434-404D-4FBC-BE25-04DE3E0F4AE6}.Release|Any CPU.ActiveCfg = Release|Any CPU 21 | {0B8DE434-404D-4FBC-BE25-04DE3E0F4AE6}.Release|Any CPU.Build.0 = Release|Any CPU 22 | {3D5B4553-84A2-4DB1-BBB4-42E7D8473143}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 23 | {3D5B4553-84A2-4DB1-BBB4-42E7D8473143}.Debug|Any CPU.Build.0 = Debug|Any CPU 24 | {3D5B4553-84A2-4DB1-BBB4-42E7D8473143}.Release|Any CPU.ActiveCfg = Release|Any CPU 25 | {3D5B4553-84A2-4DB1-BBB4-42E7D8473143}.Release|Any CPU.Build.0 = Release|Any CPU 26 | {99584D3D-FE5A-44CF-A257-7DB1F1C51781}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 27 | {99584D3D-FE5A-44CF-A257-7DB1F1C51781}.Debug|Any CPU.Build.0 = Debug|Any CPU 28 | {99584D3D-FE5A-44CF-A257-7DB1F1C51781}.Release|Any CPU.ActiveCfg = Release|Any CPU 29 | {99584D3D-FE5A-44CF-A257-7DB1F1C51781}.Release|Any CPU.Build.0 = Release|Any CPU 30 | EndGlobalSection 31 | GlobalSection(SolutionProperties) = preSolution 32 | HideSolutionNode = FALSE 33 | EndGlobalSection 34 | EndGlobal 35 | -------------------------------------------------------------------------------- /SignalrBackendService/Profiles/sitepointsignalProduction.azurePubxml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | {"ServiceManagementEndpoint":"https:\/\/management.core.windows.net\/","SubscriptionId":"c58b9798-bd88-46df-a1b7-c18f4a315618"} 5 | True 6 | SignalrBackendService 7 | BlastUpgrade 8 | Production 9 | True 10 | True 11 | True 12 | sitepointsignal 13 | sitepointsignal 14 | False 15 | False 16 | Cloud 17 | Release 18 | devtestvhdsa26504da4ad0 19 | devtestvhdsa26504da4ad0 20 | True 21 | 22 | -------------------------------------------------------------------------------- /SignalrBackendService/ServiceConfiguration.Cloud.cscfg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /SignalrBackendService/ServiceConfiguration.Local.cscfg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /SignalrBackendService/ServiceDefinition.csdef: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /SignalrBackendService/SignalrWebServiceContent/diagnostics.wadcfg: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /SignalrWebService.Tests/Controllers/ValuesControllerTest.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Net.Http; 5 | using System.Text; 6 | using System.Web.Http; 7 | using Microsoft.VisualStudio.TestTools.UnitTesting; 8 | using SignalrWebService; 9 | using SignalrWebService.Controllers; 10 | 11 | namespace SignalrWebService.Tests.Controllers 12 | { 13 | [TestClass] 14 | public class ValuesControllerTest 15 | { 16 | [TestMethod] 17 | public void Get() 18 | { 19 | // Arrange 20 | ValuesController controller = new ValuesController(); 21 | 22 | // Act 23 | IEnumerable result = controller.Get(); 24 | 25 | // Assert 26 | Assert.IsNotNull(result); 27 | Assert.AreEqual(2, result.Count()); 28 | Assert.AreEqual("value1", result.ElementAt(0)); 29 | Assert.AreEqual("value2", result.ElementAt(1)); 30 | } 31 | 32 | [TestMethod] 33 | public void GetById() 34 | { 35 | // Arrange 36 | ValuesController controller = new ValuesController(); 37 | 38 | // Act 39 | string result = controller.Get(5); 40 | 41 | // Assert 42 | Assert.AreEqual("value", result); 43 | } 44 | 45 | [TestMethod] 46 | public void Post() 47 | { 48 | // Arrange 49 | ValuesController controller = new ValuesController(); 50 | 51 | // Act 52 | controller.Post("value"); 53 | 54 | // Assert 55 | } 56 | 57 | [TestMethod] 58 | public void Put() 59 | { 60 | // Arrange 61 | ValuesController controller = new ValuesController(); 62 | 63 | // Act 64 | controller.Put(5, "value"); 65 | 66 | // Assert 67 | } 68 | 69 | [TestMethod] 70 | public void Delete() 71 | { 72 | // Arrange 73 | ValuesController controller = new ValuesController(); 74 | 75 | // Act 76 | controller.Delete(5); 77 | 78 | // Assert 79 | } 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /SignalrWebService.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("SignalrWebService.Tests")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("SignalrWebService.Tests")] 13 | [assembly: AssemblyCopyright("Copyright © 2014")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("abfe2479-5342-45cb-a7c6-b545ef3b42a5")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Revision and Build Numbers 33 | // by using the '*' as shown below: 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /SignalrWebService.Tests/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /SignalrWebService/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Optimization; 3 | 4 | namespace SignalrWebService 5 | { 6 | public class BundleConfig 7 | { 8 | // For more information on bundling, visit http://go.microsoft.com/fwlink/?LinkId=301862 9 | public static void RegisterBundles(BundleCollection bundles) 10 | { 11 | bundles.Add(new ScriptBundle("~/bundles/jquery").Include( 12 | "~/Scripts/jquery-{version}.js")); 13 | 14 | // Use the development version of Modernizr to develop with and learn from. Then, when you're 15 | // ready for production, use the build tool at http://modernizr.com to pick only the tests you need. 16 | bundles.Add(new ScriptBundle("~/bundles/modernizr").Include( 17 | "~/Scripts/modernizr-*")); 18 | 19 | bundles.Add(new ScriptBundle("~/bundles/bootstrap").Include( 20 | "~/Scripts/bootstrap.js", 21 | "~/Scripts/respond.js")); 22 | 23 | bundles.Add(new StyleBundle("~/Content/css").Include( 24 | "~/Content/bootstrap.css", 25 | "~/Content/site.css")); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /SignalrWebService/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace SignalrWebService 5 | { 6 | public class FilterConfig 7 | { 8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 9 | { 10 | filters.Add(new HandleErrorAttribute()); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /SignalrWebService/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | using System.Web.Routing; 7 | 8 | namespace SignalrWebService 9 | { 10 | public class RouteConfig 11 | { 12 | public static void RegisterRoutes(RouteCollection routes) 13 | { 14 | routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); 15 | 16 | routes.MapRoute( 17 | name: "Default", 18 | url: "{controller}/{action}/{id}", 19 | defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } 20 | ); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /SignalrWebService/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web.Http; 5 | 6 | namespace SignalrWebService 7 | { 8 | public static class WebApiConfig 9 | { 10 | public static void Register(HttpConfiguration config) 11 | { 12 | // Web API configuration and services 13 | 14 | // Web API routes 15 | config.MapHttpAttributeRoutes(); 16 | 17 | config.Routes.MapHttpRoute( 18 | name: "DefaultApi", 19 | routeTemplate: "api/{controller}/{id}", 20 | defaults: new { id = RouteParameter.Optional } 21 | ); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/ApiDescriptionExtensions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Text; 3 | using System.Web; 4 | using System.Web.Http.Description; 5 | 6 | namespace SignalrWebService.Areas.HelpPage 7 | { 8 | public static class ApiDescriptionExtensions 9 | { 10 | /// 11 | /// Generates an URI-friendly ID for the . E.g. "Get-Values-id_name" instead of "GetValues/{id}?name={name}" 12 | /// 13 | /// The . 14 | /// The ID as a string. 15 | public static string GetFriendlyId(this ApiDescription description) 16 | { 17 | string path = description.RelativePath; 18 | string[] urlParts = path.Split('?'); 19 | string localPath = urlParts[0]; 20 | string queryKeyString = null; 21 | if (urlParts.Length > 1) 22 | { 23 | string query = urlParts[1]; 24 | string[] queryKeys = HttpUtility.ParseQueryString(query).AllKeys; 25 | queryKeyString = String.Join("_", queryKeys); 26 | } 27 | 28 | StringBuilder friendlyPath = new StringBuilder(); 29 | friendlyPath.AppendFormat("{0}-{1}", 30 | description.HttpMethod.Method, 31 | localPath.Replace("/", "-").Replace("{", String.Empty).Replace("}", String.Empty)); 32 | if (queryKeyString != null) 33 | { 34 | friendlyPath.AppendFormat("_{0}", queryKeyString); 35 | } 36 | return friendlyPath.ToString(); 37 | } 38 | } 39 | } -------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/Controllers/HelpController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Web.Http; 3 | using System.Web.Mvc; 4 | using SignalrWebService.Areas.HelpPage.Models; 5 | 6 | namespace SignalrWebService.Areas.HelpPage.Controllers 7 | { 8 | /// 9 | /// The controller that will handle requests for the help page. 10 | /// 11 | public class HelpController : Controller 12 | { 13 | public HelpController() 14 | : this(GlobalConfiguration.Configuration) 15 | { 16 | } 17 | 18 | public HelpController(HttpConfiguration config) 19 | { 20 | Configuration = config; 21 | } 22 | 23 | public HttpConfiguration Configuration { get; private set; } 24 | 25 | public ActionResult Index() 26 | { 27 | ViewBag.DocumentationProvider = Configuration.Services.GetDocumentationProvider(); 28 | return View(Configuration.Services.GetApiExplorer().ApiDescriptions); 29 | } 30 | 31 | public ActionResult Api(string apiId) 32 | { 33 | if (!String.IsNullOrEmpty(apiId)) 34 | { 35 | HelpPageApiModel apiModel = Configuration.GetHelpPageApiModel(apiId); 36 | if (apiModel != null) 37 | { 38 | return View(apiModel); 39 | } 40 | } 41 | 42 | return View("Error"); 43 | } 44 | } 45 | } -------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/HelpPage.css: -------------------------------------------------------------------------------- 1 | pre.wrapped { 2 | white-space: -moz-pre-wrap; 3 | white-space: -pre-wrap; 4 | white-space: -o-pre-wrap; 5 | white-space: pre-wrap; 6 | } 7 | 8 | .warning-message-container { 9 | margin-top: 20px; 10 | padding: 0 10px; 11 | color: #525252; 12 | background: #EFDCA9; 13 | border: 1px solid #CCCCCC; 14 | } 15 | 16 | .help-page-table { 17 | width: 100%; 18 | border-collapse: collapse; 19 | text-align: left; 20 | margin: 0px 0px 20px 0px; 21 | border-top: 2px solid #D4D4D4; 22 | } 23 | 24 | .help-page-table th { 25 | text-align: left; 26 | font-weight: bold; 27 | border-bottom: 2px solid #D4D4D4; 28 | padding: 8px 6px 8px 6px; 29 | } 30 | 31 | .help-page-table td { 32 | border-bottom: 2px solid #D4D4D4; 33 | padding: 15px 8px 15px 8px; 34 | vertical-align: top; 35 | } 36 | 37 | .help-page-table pre, .help-page-table p { 38 | margin: 0px; 39 | padding: 0px; 40 | font-family: inherit; 41 | font-size: 100%; 42 | } 43 | 44 | .help-page-table tbody tr:hover td { 45 | background-color: #F3F3F3; 46 | } 47 | 48 | a:hover { 49 | background-color: transparent; 50 | } 51 | 52 | .sample-header { 53 | border: 2px solid #D4D4D4; 54 | background: #76B8DB; 55 | color: #FFFFFF; 56 | padding: 8px 15px; 57 | border-bottom: none; 58 | display: inline-block; 59 | margin: 10px 0px 0px 0px; 60 | } 61 | 62 | .sample-content { 63 | display: block; 64 | border-width: 0; 65 | padding: 15px 20px; 66 | background: #FFFFFF; 67 | border: 2px solid #D4D4D4; 68 | margin: 0px 0px 10px 0px; 69 | } 70 | 71 | .api-name { 72 | width: 40%; 73 | } 74 | 75 | .api-documentation { 76 | width: 60%; 77 | } 78 | 79 | .parameter-name { 80 | width: 20%; 81 | } 82 | 83 | .parameter-documentation { 84 | width: 50%; 85 | } 86 | 87 | .parameter-source { 88 | width: 30%; 89 | } 90 | -------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/HelpPageAreaRegistration.cs: -------------------------------------------------------------------------------- 1 | using System.Web.Http; 2 | using System.Web.Mvc; 3 | 4 | namespace SignalrWebService.Areas.HelpPage 5 | { 6 | public class HelpPageAreaRegistration : AreaRegistration 7 | { 8 | public override string AreaName 9 | { 10 | get 11 | { 12 | return "HelpPage"; 13 | } 14 | } 15 | 16 | public override void RegisterArea(AreaRegistrationContext context) 17 | { 18 | context.MapRoute( 19 | "HelpPage_Default", 20 | "Help/{action}/{apiId}", 21 | new { controller = "Help", action = "Index", apiId = UrlParameter.Optional }); 22 | 23 | HelpPageConfig.Register(GlobalConfiguration.Configuration); 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/Models/HelpPageApiModel.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.Collections.ObjectModel; 3 | using System.Net.Http.Headers; 4 | using System.Web.Http.Description; 5 | 6 | namespace SignalrWebService.Areas.HelpPage.Models 7 | { 8 | /// 9 | /// The model that represents an API displayed on the help page. 10 | /// 11 | public class HelpPageApiModel 12 | { 13 | /// 14 | /// Initializes a new instance of the class. 15 | /// 16 | public HelpPageApiModel() 17 | { 18 | SampleRequests = new Dictionary(); 19 | SampleResponses = new Dictionary(); 20 | ErrorMessages = new Collection(); 21 | } 22 | 23 | /// 24 | /// Gets or sets the that describes the API. 25 | /// 26 | public ApiDescription ApiDescription { get; set; } 27 | 28 | /// 29 | /// Gets the sample requests associated with the API. 30 | /// 31 | public IDictionary SampleRequests { get; private set; } 32 | 33 | /// 34 | /// Gets the sample responses associated with the API. 35 | /// 36 | public IDictionary SampleResponses { get; private set; } 37 | 38 | /// 39 | /// Gets the error messages associated with this model. 40 | /// 41 | public Collection ErrorMessages { get; private set; } 42 | } 43 | } -------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/SampleGeneration/ImageSample.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace SignalrWebService.Areas.HelpPage 4 | { 5 | /// 6 | /// This represents an image sample on the help page. There's a display template named ImageSample associated with this class. 7 | /// 8 | public class ImageSample 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | /// The URL of an image. 14 | public ImageSample(string src) 15 | { 16 | if (src == null) 17 | { 18 | throw new ArgumentNullException("src"); 19 | } 20 | Src = src; 21 | } 22 | 23 | public string Src { get; private set; } 24 | 25 | public override bool Equals(object obj) 26 | { 27 | ImageSample other = obj as ImageSample; 28 | return other != null && Src == other.Src; 29 | } 30 | 31 | public override int GetHashCode() 32 | { 33 | return Src.GetHashCode(); 34 | } 35 | 36 | public override string ToString() 37 | { 38 | return Src; 39 | } 40 | } 41 | } -------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/SampleGeneration/InvalidSample.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace SignalrWebService.Areas.HelpPage 4 | { 5 | /// 6 | /// This represents an invalid sample on the help page. There's a display template named InvalidSample associated with this class. 7 | /// 8 | public class InvalidSample 9 | { 10 | public InvalidSample(string errorMessage) 11 | { 12 | if (errorMessage == null) 13 | { 14 | throw new ArgumentNullException("errorMessage"); 15 | } 16 | ErrorMessage = errorMessage; 17 | } 18 | 19 | public string ErrorMessage { get; private set; } 20 | 21 | public override bool Equals(object obj) 22 | { 23 | InvalidSample other = obj as InvalidSample; 24 | return other != null && ErrorMessage == other.ErrorMessage; 25 | } 26 | 27 | public override int GetHashCode() 28 | { 29 | return ErrorMessage.GetHashCode(); 30 | } 31 | 32 | public override string ToString() 33 | { 34 | return ErrorMessage; 35 | } 36 | } 37 | } -------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- 1 | namespace SignalrWebService.Areas.HelpPage 2 | { 3 | /// 4 | /// Indicates whether the sample is used for request or response 5 | /// 6 | public enum SampleDirection 7 | { 8 | Request = 0, 9 | Response 10 | } 11 | } -------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/SampleGeneration/TextSample.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace SignalrWebService.Areas.HelpPage 4 | { 5 | /// 6 | /// This represents a preformatted text sample on the help page. There's a display template named TextSample associated with this class. 7 | /// 8 | public class TextSample 9 | { 10 | public TextSample(string text) 11 | { 12 | if (text == null) 13 | { 14 | throw new ArgumentNullException("text"); 15 | } 16 | Text = text; 17 | } 18 | 19 | public string Text { get; private set; } 20 | 21 | public override bool Equals(object obj) 22 | { 23 | TextSample other = obj as TextSample; 24 | return other != null && Text == other.Text; 25 | } 26 | 27 | public override int GetHashCode() 28 | { 29 | return Text.GetHashCode(); 30 | } 31 | 32 | public override string ToString() 33 | { 34 | return Text; 35 | } 36 | } 37 | } -------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/Views/Help/Api.cshtml: -------------------------------------------------------------------------------- 1 | @using System.Web.Http 2 | @using SignalrWebService.Areas.HelpPage.Models 3 | @model HelpPageApiModel 4 | 5 | @{ 6 | var description = Model.ApiDescription; 7 | ViewBag.Title = description.HttpMethod.Method + " " + description.RelativePath; 8 | } 9 | 10 |
11 | 18 |
19 | @Html.DisplayFor(m => Model) 20 |
21 |
22 | 23 | @section Scripts { 24 | 25 | } -------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml: -------------------------------------------------------------------------------- 1 | @using System.Web.Http 2 | @using System.Web.Http.Controllers 3 | @using System.Web.Http.Description 4 | @using SignalrWebService.Areas.HelpPage 5 | @using SignalrWebService.Areas.HelpPage.Models 6 | @model IGrouping 7 | 8 | @{ 9 | var controllerDocumentation = ViewBag.DocumentationProvider != null ? 10 | ViewBag.DocumentationProvider.GetDocumentation(Model.Key) : 11 | null; 12 | } 13 | 14 |

@Model.Key.ControllerName

15 | @if (!String.IsNullOrEmpty(controllerDocumentation)) 16 | { 17 |

@controllerDocumentation

18 | } 19 | 20 | 21 | 22 | 23 | 24 | @foreach (var api in Model) 25 | { 26 | 27 | 28 | 38 | 39 | } 40 | 41 |
APIDescription
@api.HttpMethod.Method @api.RelativePath 29 | @if (api.Documentation != null) 30 | { 31 |

@api.Documentation

32 | } 33 | else 34 | { 35 |

No documentation available.

36 | } 37 |
-------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml: -------------------------------------------------------------------------------- 1 | @using System.Web.Http 2 | @using SignalrWebService.Areas.HelpPage.Models 3 | @model HelpPageApiModel 4 | 5 | @{ 6 | var description = Model.ApiDescription; 7 | bool hasParameters = description.ParameterDescriptions.Count > 0; 8 | bool hasRequestSamples = Model.SampleRequests.Count > 0; 9 | bool hasResponseSamples = Model.SampleResponses.Count > 0; 10 | } 11 |

@description.HttpMethod.Method @description.RelativePath

12 |
13 | @if (description.Documentation != null) 14 | { 15 |

@description.Documentation

16 | } 17 | else 18 | { 19 |

No documentation available.

20 | } 21 | 22 | @if (hasParameters || hasRequestSamples) 23 | { 24 |

Request Information

25 | if (hasParameters) 26 | { 27 |

Parameters

28 | @Html.DisplayFor(apiModel => apiModel.ApiDescription.ParameterDescriptions, "Parameters") 29 | } 30 | if (hasRequestSamples) 31 | { 32 |

Request body formats

33 | @Html.DisplayFor(apiModel => apiModel.SampleRequests, "Samples") 34 | } 35 | } 36 | 37 | @if (hasResponseSamples) 38 | { 39 |

Response Information

40 | if (description.ResponseDescription.Documentation != null) 41 | { 42 |

@description.ResponseDescription.Documentation

43 | } 44 | else 45 | { 46 |

No documentation available.

47 | } 48 |

Response body formats

49 | @Html.DisplayFor(apiModel => apiModel.SampleResponses, "Samples") 50 | } 51 |
-------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml: -------------------------------------------------------------------------------- 1 | @using SignalrWebService.Areas.HelpPage 2 | @model ImageSample 3 | 4 | -------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml: -------------------------------------------------------------------------------- 1 | @using SignalrWebService.Areas.HelpPage 2 | @model InvalidSample 3 | 4 | @if (HttpContext.Current.IsDebuggingEnabled) 5 | { 6 |
7 |

@Model.ErrorMessage

8 |
9 | } 10 | else 11 | { 12 |

Sample not available.

13 | } -------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml: -------------------------------------------------------------------------------- 1 | @using System.Collections.ObjectModel 2 | @using System.Web.Http.Description 3 | @using System.Threading 4 | @model Collection 5 | 6 | 7 | 8 | 9 | 10 | 11 | @foreach (ApiParameterDescription parameter in Model) 12 | { 13 | string parameterDocumentation = parameter.Documentation != null ? 14 | parameter.Documentation : 15 | "No documentation available."; 16 | 17 | // Don't show CancellationToken because it's a special parameter 18 | if (parameter.ParameterDescriptor == null || 19 | (parameter.ParameterDescriptor != null && 20 | !typeof(CancellationToken).IsAssignableFrom(parameter.ParameterDescriptor.ParameterType))) 21 | { 22 | 23 | 24 | 25 | 40 | 41 | } 42 | } 43 | 44 |
NameDescriptionAdditional information
@parameter.Name
@parameterDocumentation
26 | @switch (parameter.Source) 27 | { 28 | case ApiParameterSource.FromBody: 29 |

Define this parameter in the request body.

30 | break; 31 | case ApiParameterSource.FromUri: 32 |

Define this parameter in the request URI.

33 | break; 34 | case ApiParameterSource.Unknown: 35 | default: 36 |

None.

37 | break; 38 | } 39 |
-------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml: -------------------------------------------------------------------------------- 1 | @using System.Net.Http.Headers 2 | @model Dictionary 3 | 4 | @{ 5 | // Group the samples into a single tab if they are the same. 6 | Dictionary samples = Model.GroupBy(pair => pair.Value).ToDictionary( 7 | pair => String.Join(", ", pair.Select(m => m.Key.ToString()).ToArray()), 8 | pair => pair.Key); 9 | var mediaTypes = samples.Keys; 10 | } 11 |
12 | @foreach (var mediaType in mediaTypes) 13 | { 14 |

@mediaType

15 |
16 | Sample: 17 | @{ 18 | var sample = samples[mediaType]; 19 | if (sample == null) 20 | { 21 |

Sample not available.

22 | } 23 | else 24 | { 25 | @Html.DisplayFor(s => sample); 26 | } 27 | } 28 |
29 | } 30 |
-------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml: -------------------------------------------------------------------------------- 1 | @using SignalrWebService.Areas.HelpPage 2 | @model TextSample 3 | 4 |
5 | @Model.Text
6 | 
-------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/Views/Help/Index.cshtml: -------------------------------------------------------------------------------- 1 | @using System.Web.Http 2 | @using System.Web.Http.Controllers 3 | @using System.Web.Http.Description 4 | @using System.Collections.ObjectModel 5 | @using SignalrWebService.Areas.HelpPage.Models 6 | @model Collection 7 | 8 | @{ 9 | ViewBag.Title = "ASP.NET Web API Help Page"; 10 | 11 | // Group APIs by controller 12 | ILookup apiGroups = Model.ToLookup(api => api.ActionDescriptor.ControllerDescriptor); 13 | } 14 | 15 |
16 |
17 |
18 |

@ViewBag.Title

19 |
20 |
21 |
22 |
23 | 31 |
32 | @foreach (var group in apiGroups) 33 | { 34 | @Html.DisplayFor(m => group, "ApiGroup") 35 | } 36 |
37 |
38 | 39 | @section Scripts { 40 | 41 | } -------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | @ViewBag.Title 7 | @RenderSection("scripts", required: false) 8 | 9 | 10 | @RenderBody() 11 | 12 | -------------------------------------------------------------------------------- /SignalrWebService/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | // Change the Layout path below to blend the look and feel of the help page with your existing web pages 3 | Layout = "~/Views/Shared/_Layout.cshtml"; 4 | } -------------------------------------------------------------------------------- /SignalrWebService/Content/Site.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 50px; 3 | padding-bottom: 20px; 4 | } 5 | 6 | /* Set padding to keep content from hitting the edges */ 7 | .body-content { 8 | padding-left: 15px; 9 | padding-right: 15px; 10 | } 11 | 12 | /* Set width on the form input elements since they're 100% wide by default */ 13 | input, 14 | select, 15 | textarea { 16 | max-width: 280px; 17 | } 18 | 19 | /* styles for validation helpers */ 20 | .field-validation-error { 21 | color: #b94a48; 22 | } 23 | 24 | .field-validation-valid { 25 | display: none; 26 | } 27 | 28 | input.input-validation-error { 29 | border: 1px solid #b94a48; 30 | } 31 | 32 | input[type="checkbox"].input-validation-error { 33 | border: 0 none; 34 | } 35 | 36 | .validation-summary-errors { 37 | color: #b94a48; 38 | } 39 | 40 | .validation-summary-valid { 41 | display: none; 42 | } -------------------------------------------------------------------------------- /SignalrWebService/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Mvc; 6 | 7 | namespace SignalrWebService.Controllers 8 | { 9 | public class HomeController : Controller 10 | { 11 | public ActionResult Index() 12 | { 13 | ViewBag.Title = "Home Page"; 14 | 15 | return View(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /SignalrWebService/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Net; 5 | using System.Net.Http; 6 | using System.Web.Http; 7 | 8 | namespace SignalrWebService.Controllers 9 | { 10 | public class ValuesController : ApiController 11 | { 12 | // GET api/values 13 | public IEnumerable Get() 14 | { 15 | return new string[] { "value1", "value2" }; 16 | } 17 | 18 | // GET api/values/5 19 | public string Get(int id) 20 | { 21 | return "value"; 22 | } 23 | 24 | // POST api/values 25 | public void Post([FromBody]string value) 26 | { 27 | } 28 | 29 | // PUT api/values/5 30 | public void Put(int id, [FromBody]string value) 31 | { 32 | } 33 | 34 | // DELETE api/values/5 35 | public void Delete(int id) 36 | { 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /SignalrWebService/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="SignalrWebService.WebApiApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /SignalrWebService/Global.asax.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using System.Web.Http; 6 | using System.Web.Mvc; 7 | using System.Web.Optimization; 8 | using System.Web.Routing; 9 | 10 | namespace SignalrWebService 11 | { 12 | public class WebApiApplication : System.Web.HttpApplication 13 | { 14 | protected void Application_Start() 15 | { 16 | AreaRegistration.RegisterAllAreas(); 17 | GlobalConfiguration.Configure(WebApiConfig.Register); 18 | FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters); 19 | RouteConfig.RegisterRoutes(RouteTable.Routes); 20 | BundleConfig.RegisterBundles(BundleTable.Bundles); 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /SignalrWebService/Hubs/CommunicationHub.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using Microsoft.AspNet.SignalR; 6 | 7 | namespace SignalrWebService.Hubs 8 | { 9 | public class CommunicationHub : Hub 10 | { 11 | public void Hello() 12 | { 13 | Clients.All.hello(); 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /SignalrWebService/Hubs/LoggingHub.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using Microsoft.AspNet.SignalR; 6 | 7 | namespace SignalrWebService.Hubs 8 | { 9 | public class LoggingHub : Hub 10 | { 11 | public void Hello() 12 | { 13 | Clients.All.hello(); 14 | } 15 | } 16 | } -------------------------------------------------------------------------------- /SignalrWebService/Hubs/PerformanceHub.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using Microsoft.AspNet.SignalR; 6 | using SignalrWebService.Models; 7 | using SignalrWebService.Performance; 8 | using System.Threading.Tasks; 9 | 10 | namespace SignalrWebService.Hubs 11 | { 12 | public class PerformanceHub : Hub 13 | { 14 | public void Hello() 15 | { 16 | Clients.All.hello(); 17 | } 18 | 19 | public void SendPerformance(IList performanceModels) 20 | { 21 | Clients.All.broadcastPerformance(performanceModels); 22 | } 23 | 24 | public void Communicate(string messageId, string message) 25 | { 26 | Clients.All.addNewMessageToPage(messageId, message); 27 | } 28 | 29 | public void Heartbeat() 30 | { 31 | Clients.All.heartbeat(); 32 | } 33 | 34 | public dynamic MonitoringFor() 35 | { 36 | /* 37 | return PerformanceEngine.ServiceCounters.Select(counter => 38 | new 39 | { 40 | MachineName = counter.CounterName, 41 | CategoryName = counter.CategoryName, 42 | CounterName = counter.CounterName, 43 | InstanceName = counter.InstanceName 44 | });*/ 45 | return new List() 46 | { 47 | new PerformanceModel() { CategoryName="junk", Value=10, CounterName="junk", InstanceName="junk", MachineName="junk"}, 48 | new PerformanceModel() { CategoryName="junk", Value=100, CounterName="junk", InstanceName="junk", MachineName="junk"} 49 | }; 50 | } 51 | 52 | public override Task OnConnected() 53 | { 54 | return (base.OnConnected()); 55 | } 56 | 57 | public string GetServerTime() 58 | { 59 | return DateTime.UtcNow.ToString(); 60 | } 61 | } 62 | } -------------------------------------------------------------------------------- /SignalrWebService/Models/LoggingModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace SignalrWebService.Models 7 | { 8 | public class LoggingModel 9 | { 10 | } 11 | } -------------------------------------------------------------------------------- /SignalrWebService/Models/PerformanceModel.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using Newtonsoft.Json; 6 | 7 | namespace SignalrWebService.Models 8 | { 9 | public class PerformanceModel 10 | { 11 | [JsonProperty("machineName")] 12 | public string MachineName { get; set; } 13 | 14 | [JsonProperty("categoryName")] 15 | public string CategoryName { get; set; } 16 | 17 | [JsonProperty("counterName")] 18 | public string CounterName { get; set; } 19 | 20 | [JsonProperty("instanceName")] 21 | public string InstanceName { get; set; } 22 | 23 | [JsonProperty("value")] 24 | public double Value { get; set; } 25 | } 26 | } -------------------------------------------------------------------------------- /SignalrWebService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("SignalrWebService")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("SignalrWebService")] 13 | [assembly: AssemblyCopyright("Copyright © 2014")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("5ccf719c-f06c-46c6-a6f8-4f555df36820")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Revision and Build Numbers 33 | // by using the '*' as shown below: 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /SignalrWebService/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/SignalrWebService/Scripts/_references.js -------------------------------------------------------------------------------- /SignalrWebService/Startup.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | using Owin; 6 | using System.Threading.Tasks; 7 | using Microsoft.Owin; 8 | using SignalrWebService.Performance; 9 | using Microsoft.Owin.Cors; 10 | using Microsoft.AspNet.SignalR; 11 | 12 | [assembly: OwinStartup(typeof(SignalrWebService.Startup))] 13 | 14 | namespace SignalrWebService 15 | { 16 | public class Startup 17 | { 18 | public void Configuration(IAppBuilder app) 19 | { 20 | app.UseCors(CorsOptions.AllowAll); 21 | var hubConfiguration = new HubConfiguration(); 22 | hubConfiguration.EnableDetailedErrors = true; 23 | app.MapSignalR(hubConfiguration); 24 | 25 | 26 | PerformanceEngine performanceEngine = new PerformanceEngine(800); 27 | Task.Factory.StartNew(async () => await performanceEngine.OnPerformanceMonitor()); 28 | } 29 | } 30 | } -------------------------------------------------------------------------------- /SignalrWebService/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | 5 | 6 | 7 | 8 | 9 | Error 10 | 11 | 12 |
13 |

Error.

14 |

An error occurred while processing your request.

15 |
16 | 17 | 18 | -------------------------------------------------------------------------------- /SignalrWebService/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | @ViewBag.Title 7 | @Styles.Render("~/Content/css") 8 | @Scripts.Render("~/bundles/modernizr") 9 | 10 | 11 | 29 |
30 | @RenderBody() 31 |
32 |
33 |

© @DateTime.Now.Year - SignalR Backend Service

34 |
35 |
36 | 37 | @Scripts.Render("~/bundles/jquery") 38 | @Scripts.Render("~/bundles/bootstrap") 39 | @RenderSection("scripts", required: false) 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /SignalrWebService/Views/Web.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 |
7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /SignalrWebService/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } 4 | -------------------------------------------------------------------------------- /SignalrWebService/Web.Debug.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 17 | 18 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /SignalrWebService/Web.Release.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 17 | 18 | 19 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /SignalrWebService/WebRole.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using Microsoft.WindowsAzure; 5 | using Microsoft.WindowsAzure.Diagnostics; 6 | using Microsoft.WindowsAzure.ServiceRuntime; 7 | 8 | namespace SignalrWebService 9 | { 10 | public class WebRole : RoleEntryPoint 11 | { 12 | public override bool OnStart() 13 | { 14 | // For information on handling configuration changes 15 | // see the MSDN topic at http://go.microsoft.com/fwlink/?LinkId=166357. 16 | 17 | return base.OnStart(); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /SignalrWebService/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/SignalrWebService/favicon.ico -------------------------------------------------------------------------------- /SignalrWebService/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/SignalrWebService/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /SignalrWebService/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/SignalrWebService/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /SignalrWebService/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/SignalrWebService/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /packages/Antlr.3.4.1.9004/Antlr.3.4.1.9004.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Antlr.3.4.1.9004/Antlr.3.4.1.9004.nupkg -------------------------------------------------------------------------------- /packages/Antlr.3.4.1.9004/Antlr.3.4.1.9004.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Antlr 5 | 3.4.1.9004 6 | Terence Parr 7 | Terence Parr 8 | false 9 | ANother Tool for Language Recognition, is a language tool that provides a framework for constructing recognizers, interpreters, compilers, and translators from grammatical descriptions containing actions in a variety of target languages. 10 | ANother Tool for Language Recognition, is a language tool that provides a framework for constructing recognizers, interpreters, compilers, and translators from grammatical descriptions containing actions in a variety of target languages. 11 | en-US 12 | 13 | -------------------------------------------------------------------------------- /packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Cors.5.2.2/Microsoft.AspNet.Cors.5.2.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.Cors.5.2.2/Microsoft.AspNet.Cors.5.2.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Cors.5.2.2/Microsoft.AspNet.Cors.5.2.2.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.Cors 5 | 5.2.2 6 | Microsoft ASP.NET Cross-Origin Support 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm 10 | http://www.asp.net/web-api 11 | true 12 | This package contains the core components to enable Cross-Origin Resource Sharing (CORS) in ASP.NET. 13 | This package contains the core components to enable Cross-Origin Resource Sharing (CORS) in ASP.NET. 14 | Please visit http://go.microsoft.com/fwlink/?LinkID=403010 to view the release notes. 15 | © Microsoft Corporation. All rights reserved. 16 | en-US 17 | Microsoft AspNet Cors Cross Origin 18 | 19 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Cors.5.2.2/lib/net45/System.Web.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.Cors.5.2.2/lib/net45/System.Web.Cors.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.0.0/Microsoft.AspNet.Mvc.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.Mvc.5.0.0/Microsoft.AspNet.Mvc.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.0.0/Microsoft.AspNet.Mvc.5.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.Mvc 5 | 5.0.0 6 | Microsoft ASP.NET MVC 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm 10 | http://www.asp.net/mvc 11 | true 12 | This package contains the runtime assemblies for ASP.NET MVC. ASP.NET MVC gives you a powerful, patterns-based way to build dynamic websites that enables a clean separation of concerns and that gives you full control over markup. 13 | This package contains the runtime assemblies for ASP.NET MVC. 14 | © Microsoft Corporation. All rights reserved. 15 | en-US 16 | Microsoft AspNet Mvc AspNetMvc 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.5.0.0/lib/net45/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.Mvc.5.0.0/lib/net45/System.Web.Mvc.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.0.0/Microsoft.AspNet.Razor.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.Razor.3.0.0/Microsoft.AspNet.Razor.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.0.0/Microsoft.AspNet.Razor.3.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.Razor 5 | 3.0.0 6 | Microsoft ASP.NET Razor 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm 10 | http://www.asp.net/web-pages 11 | true 12 | This package contains the runtime assemblies for ASP.NET Web Pages. ASP.NET Web Pages and the new Razor syntax provide a fast, terse, clean and lightweight way to combine server code with HTML to create dynamic web content. 13 | This package contains the runtime assemblies for ASP.NET Web Pages. 14 | © Microsoft Corporation. All rights reserved. 15 | en-US 16 | Microsoft AspNet WebPages AspNetWebPages Razor 17 | 18 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.3.0.0/lib/net45/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.Razor.3.0.0/lib/net45/System.Web.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.SignalR.2.1.2/Microsoft.AspNet.SignalR.2.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.SignalR.2.1.2/Microsoft.AspNet.SignalR.2.1.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.SignalR.2.1.2/Microsoft.AspNet.SignalR.2.1.2.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.SignalR 5 | 2.1.2 6 | Microsoft ASP.NET SignalR 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm 10 | http://www.asp.net/signalr 11 | true 12 | Incredibly simple real-time web for .NET. 13 | This package pulls in the server components and JavaScript client required to use SignalR in an ASP.NET application. 14 | https://github.com/SignalR/SignalR/releases 15 | © Microsoft Corporation. All rights reserved. 16 | en-US 17 | Microsoft AspNet SignalR AspNetSignalR websockets real-time realtime comet HTTP streaming 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.SignalR.2.1.2/readme.txt: -------------------------------------------------------------------------------- 1 | Please see http://go.microsoft.com/fwlink/?LinkId=272764 for more information on using SignalR. 2 | 3 | Upgrading from 1.x to 2.0 4 | ------------------------- 5 | Please see http://go.microsoft.com/fwlink/?LinkId=320578 for more information on how to 6 | upgrade your SignalR 1.x application to 2.0. 7 | 8 | Mapping the Hubs connection 9 | ---------------------------- 10 | To enable SignalR in your application, create a class called Startup with the following: 11 | 12 | using Microsoft.Owin; 13 | using Owin; 14 | using MyWebApplication; 15 | 16 | namespace MyWebApplication 17 | { 18 | public class Startup 19 | { 20 | public void Configuration(IAppBuilder app) 21 | { 22 | app.MapSignalR(); 23 | } 24 | } 25 | } 26 | 27 | Getting Started 28 | --------------- 29 | See http://www.asp.net/signalr/overview/getting-started for more information on how to get started. 30 | 31 | Why does ~/signalr/hubs return 404 or Why do I get a JavaScript error: 'myhub is undefined'? 32 | -------------------------------------------------------------------------------------------- 33 | This issue is generally due to a missing or invalid script reference to the auto-generated Hub JavaScript proxy at '~/signalr/hubs'. 34 | Please make sure that the Hub route is registered before any other routes in your application. 35 | 36 | In ASP.NET MVC 4 you can do the following: 37 | 38 | 39 | 40 | If you're writing an ASP.NET MVC 3 application, make sure that you are using Url.Content for your script references: 41 | 42 | 43 | 44 | If you're writing a regular ASP.NET application use ResolveClientUrl for your script references or register them via the ScriptManager 45 | using a app root relative path (starting with a '~/'): 46 | 47 | 48 | 49 | If the above still doesn't work, you may have an issue with routing and extensionless URLs. To fix this, ensure you have the latest 50 | patches installed for IIS and ASP.NET. -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.SignalR.Core.2.1.2/Microsoft.AspNet.SignalR.Core.2.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.SignalR.Core.2.1.2/Microsoft.AspNet.SignalR.Core.2.1.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.SignalR.Core.2.1.2/Microsoft.AspNet.SignalR.Core.2.1.2.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.SignalR.Core 5 | 2.1.2 6 | Microsoft ASP.NET SignalR Core Components 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm 10 | http://www.asp.net/signalr 11 | true 12 | Core server components for ASP.NET SignalR. 13 | https://github.com/SignalR/SignalR/releases 14 | © Microsoft Corporation. All rights reserved. 15 | en-US 16 | Microsoft AspNet SignalR AspNetSignalR Core 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.SignalR.Core.2.1.2/lib/net45/Microsoft.AspNet.SignalR.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.SignalR.Core.2.1.2/lib/net45/Microsoft.AspNet.SignalR.Core.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.SignalR.JS.2.1.2/Microsoft.AspNet.SignalR.JS.2.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.SignalR.JS.2.1.2/Microsoft.AspNet.SignalR.JS.2.1.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.SignalR.JS.2.1.2/Microsoft.AspNet.SignalR.JS.2.1.2.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.SignalR.JS 5 | 2.1.2 6 | Microsoft ASP.NET SignalR JavaScript Client 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm 10 | http://www.asp.net/signalr 11 | true 12 | JavaScript client for ASP.NET SignalR. 13 | https://github.com/SignalR/SignalR/releases 14 | © Microsoft Corporation. All rights reserved. 15 | en-US 16 | Microsoft AspNet SignalR AspNetSignalR JS 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.SignalR.SystemWeb.2.1.2/Microsoft.AspNet.SignalR.SystemWeb.2.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.SignalR.SystemWeb.2.1.2/Microsoft.AspNet.SignalR.SystemWeb.2.1.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.SignalR.SystemWeb.2.1.2/Microsoft.AspNet.SignalR.SystemWeb.2.1.2.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.SignalR.SystemWeb 5 | 2.1.2 6 | Microsoft ASP.NET SignalR System.Web 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm 10 | http://www.asp.net/signalr 11 | true 12 | Incredibly simple real-time web for .NET. 13 | Components for using ASP.NET SignalR in applications hosted on System.Web. 14 | https://github.com/SignalR/SignalR/releases 15 | © Microsoft Corporation. All rights reserved. 16 | en-US 17 | Microsoft AspNet SignalR AspNetSignalR SystemWeb 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.SignalR.SystemWeb.2.1.2/lib/net45/Microsoft.AspNet.SignalR.SystemWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.SignalR.SystemWeb.2.1.2/lib/net45/Microsoft.AspNet.SignalR.SystemWeb.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.1/Microsoft.AspNet.Web.Optimization.1.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.Web.Optimization.1.1.1/Microsoft.AspNet.Web.Optimization.1.1.1.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.1/Microsoft.AspNet.Web.Optimization.1.1.1.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.Web.Optimization 5 | 1.1.1 6 | Microsoft ASP.NET Web Optimization Framework 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_enu.htm 10 | true 11 | ASP.NET Optimization introduces a way to bundle and optimize CSS and JavaScript files. 12 | ASP.NET Optimization introduces a way to bundle and optimize CSS and JavaScript files. 13 | © Microsoft Corporation. All rights reserved. 14 | Microsoft AspNet optimization bundling minification 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.1.1/lib/net40/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.Web.Optimization.1.1.1/lib/net40/System.Web.Optimization.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.5.2.2/Microsoft.AspNet.WebApi.5.2.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.5.2.2/Microsoft.AspNet.WebApi.5.2.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.5.2.2/Microsoft.AspNet.WebApi.5.2.2.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.WebApi 5 | 5.2.2 6 | Microsoft ASP.NET Web API 2.2 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm 10 | http://www.asp.net/web-api 11 | true 12 | This package contains everything you need to host ASP.NET Web API on IIS. ASP.NET Web API is a framework that makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices. ASP.NET Web API is an ideal platform for building RESTful applications on the .NET Framework. 13 | This package contains everything you need to host ASP.NET Web API on IIS. 14 | Please visit http://go.microsoft.com/fwlink/?LinkID=403010 to view the release notes. 15 | © Microsoft Corporation. All rights reserved. 16 | en-US 17 | Microsoft AspNet WebApi AspNetWebApi 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.0.0/Microsoft.AspNet.WebApi.Client.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.Client.5.0.0/Microsoft.AspNet.WebApi.Client.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.0.0/Microsoft.AspNet.WebApi.Client.5.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.WebApi.Client 5 | 5.0.0 6 | Microsoft ASP.NET Web API Client Libraries 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm 10 | http://www.asp.net/web-api 11 | true 12 | This package adds support for formatting and content negotiation to System.Net.Http. It includes support for JSON, XML, and form URL encoded data. 13 | This package adds support for formatting and content negotiation to System.Net.Http. 14 | © Microsoft Corporation. All rights reserved. 15 | en-US 16 | Microsoft AspNet WebApi AspNetWebApi HttpClient 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.0.0/lib/net45/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.Client.5.0.0/lib/net45/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.0.0/lib/portable-wp8%2Bnetcore45%2Bnet45/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.Client.5.0.0/lib/portable-wp8%2Bnetcore45%2Bnet45/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.0.0/lib/portable-wp8+netcore45+net45/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.Client.5.0.0/lib/portable-wp8+netcore45+net45/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.2.2/Microsoft.AspNet.WebApi.Client.5.2.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.Client.5.2.2/Microsoft.AspNet.WebApi.Client.5.2.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.2.2/Microsoft.AspNet.WebApi.Client.5.2.2.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.WebApi.Client 5 | 5.2.2 6 | Microsoft ASP.NET Web API 2.2 Client Libraries 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm 10 | http://www.asp.net/web-api 11 | true 12 | This package adds support for formatting and content negotiation to System.Net.Http. It includes support for JSON, XML, and form URL encoded data. 13 | This package adds support for formatting and content negotiation to System.Net.Http. 14 | Please visit http://go.microsoft.com/fwlink/?LinkID=403010 to view the release notes. 15 | © Microsoft Corporation. All rights reserved. 16 | en-US 17 | Microsoft AspNet WebApi AspNetWebApi HttpClient 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.2.2/lib/net45/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.Client.5.2.2/lib/net45/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.2.2/lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.Client.5.2.2/lib/portable-wp8+netcore45+net45+wp81+wpa81/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.5.0.0/Microsoft.AspNet.WebApi.Core.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.Core.5.0.0/Microsoft.AspNet.WebApi.Core.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.5.0.0/Microsoft.AspNet.WebApi.Core.5.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.WebApi.Core 5 | 5.0.0 6 | Microsoft ASP.NET Web API Core Libraries 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm 10 | http://www.asp.net/web-api 11 | true 12 | This package contains the core runtime assemblies for ASP.NET Web API. This package is used by hosts of the ASP.NET Web API runtime. To host a Web API in IIS use the Microsoft.AspNet.WebApi.WebHost package. To host a Web API in your own process use the Microsoft.AspNet.WebApi.SelfHost package. 13 | This package contains the core runtime assemblies for ASP.NET Web API. 14 | © Microsoft Corporation. All rights reserved. 15 | en-US 16 | Microsoft AspNet WebApi AspNetWebApi 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.5.0.0/content/web.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.5.0.0/lib/net45/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.Core.5.0.0/lib/net45/System.Web.Http.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.5.2.2/Content/web.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.5.2.2/Microsoft.AspNet.WebApi.Core.5.2.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.Core.5.2.2/Microsoft.AspNet.WebApi.Core.5.2.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.5.2.2/Microsoft.AspNet.WebApi.Core.5.2.2.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.WebApi.Core 5 | 5.2.2 6 | Microsoft ASP.NET Web API 2.2 Core Libraries 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm 10 | http://www.asp.net/web-api 11 | true 12 | This package contains the core runtime assemblies for ASP.NET Web API. This package is used by hosts of the ASP.NET Web API runtime. To host a Web API in IIS use the Microsoft.AspNet.WebApi.WebHost package. To host a Web API in your own process use the Microsoft.AspNet.WebApi.SelfHost package. 13 | This package contains the core runtime assemblies for ASP.NET Web API. 14 | Please visit http://go.microsoft.com/fwlink/?LinkID=403010 to view the release notes. 15 | © Microsoft Corporation. All rights reserved. 16 | en-US 17 | Microsoft AspNet WebApi AspNetWebApi 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.5.2.2/lib/net45/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.Core.5.2.2/lib/net45/System.Web.Http.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Cors.5.2.2/Microsoft.AspNet.WebApi.Cors.5.2.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.Cors.5.2.2/Microsoft.AspNet.WebApi.Cors.5.2.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Cors.5.2.2/Microsoft.AspNet.WebApi.Cors.5.2.2.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.WebApi.Cors 5 | 5.2.2 6 | Microsoft ASP.NET Web API 2.2 Cross-Origin Support 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm 10 | http://www.asp.net/web-api 11 | true 12 | This package contains the components to enable Cross-Origin Resource Sharing (CORS) in ASP.NET Web API. 13 | This package contains the components to enable Cross-Origin Resource Sharing (CORS) in ASP.NET Web API. 14 | Please visit http://go.microsoft.com/fwlink/?LinkID=403010 to view the release notes. 15 | © Microsoft Corporation. All rights reserved. 16 | en-US 17 | Microsoft AspNet WebApi AspNetWebApi Cors Cross Origin 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Cors.5.2.2/lib/net45/System.Web.Http.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.Cors.5.2.2/lib/net45/System.Web.Http.Cors.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/Microsoft.AspNet.WebApi.HelpPage.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/Microsoft.AspNet.WebApi.HelpPage.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/Microsoft.AspNet.WebApi.HelpPage.5.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.WebApi.HelpPage 5 | 5.0.0 6 | Microsoft ASP.NET Web API Help Page 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm 10 | http://www.asp.net/web-api 11 | true 12 | The ASP.NET Web API Help Page automatically generates help page content for the web APIs on your site. Visitors to your help page can use this content to learn how to call your web APIs. Everything generated by the help page is fully customizable using ASP.NET MVC and Razor. ASP.NET Web API Help Page is a great addition to any ASP.NET Web API project. 13 | The ASP.NET Web API Help Page automatically generates help page content for the web APIs on your site. 14 | © Microsoft Corporation. All rights reserved. 15 | en-US 16 | Microsoft AspNet WebApi AspNetWebApi HelpPage 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/ApiDescriptionExtensions.cs.pp: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Text; 3 | using System.Web; 4 | using System.Web.Http.Description; 5 | 6 | namespace $rootnamespace$.Areas.HelpPage 7 | { 8 | public static class ApiDescriptionExtensions 9 | { 10 | /// 11 | /// Generates an URI-friendly ID for the . E.g. "Get-Values-id_name" instead of "GetValues/{id}?name={name}" 12 | /// 13 | /// The . 14 | /// The ID as a string. 15 | public static string GetFriendlyId(this ApiDescription description) 16 | { 17 | string path = description.RelativePath; 18 | string[] urlParts = path.Split('?'); 19 | string localPath = urlParts[0]; 20 | string queryKeyString = null; 21 | if (urlParts.Length > 1) 22 | { 23 | string query = urlParts[1]; 24 | string[] queryKeys = HttpUtility.ParseQueryString(query).AllKeys; 25 | queryKeyString = String.Join("_", queryKeys); 26 | } 27 | 28 | StringBuilder friendlyPath = new StringBuilder(); 29 | friendlyPath.AppendFormat("{0}-{1}", 30 | description.HttpMethod.Method, 31 | localPath.Replace("/", "-").Replace("{", String.Empty).Replace("}", String.Empty)); 32 | if (queryKeyString != null) 33 | { 34 | friendlyPath.AppendFormat("_{0}", queryKeyString); 35 | } 36 | return friendlyPath.ToString(); 37 | } 38 | } 39 | } -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/Controllers/HelpController.cs.pp: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Web.Http; 3 | using System.Web.Mvc; 4 | using $rootnamespace$.Areas.HelpPage.Models; 5 | 6 | namespace $rootnamespace$.Areas.HelpPage.Controllers 7 | { 8 | /// 9 | /// The controller that will handle requests for the help page. 10 | /// 11 | public class HelpController : Controller 12 | { 13 | public HelpController() 14 | : this(GlobalConfiguration.Configuration) 15 | { 16 | } 17 | 18 | public HelpController(HttpConfiguration config) 19 | { 20 | Configuration = config; 21 | } 22 | 23 | public HttpConfiguration Configuration { get; private set; } 24 | 25 | public ActionResult Index() 26 | { 27 | ViewBag.DocumentationProvider = Configuration.Services.GetDocumentationProvider(); 28 | return View(Configuration.Services.GetApiExplorer().ApiDescriptions); 29 | } 30 | 31 | public ActionResult Api(string apiId) 32 | { 33 | if (!String.IsNullOrEmpty(apiId)) 34 | { 35 | HelpPageApiModel apiModel = Configuration.GetHelpPageApiModel(apiId); 36 | if (apiModel != null) 37 | { 38 | return View(apiModel); 39 | } 40 | } 41 | 42 | return View("Error"); 43 | } 44 | } 45 | } -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/HelpPage.css.pp: -------------------------------------------------------------------------------- 1 | pre.wrapped { 2 | white-space: -moz-pre-wrap; 3 | white-space: -pre-wrap; 4 | white-space: -o-pre-wrap; 5 | white-space: pre-wrap; 6 | } 7 | 8 | .warning-message-container { 9 | margin-top: 20px; 10 | padding: 0 10px; 11 | color: #525252; 12 | background: #EFDCA9; 13 | border: 1px solid #CCCCCC; 14 | } 15 | 16 | .help-page-table { 17 | width: 100%; 18 | border-collapse: collapse; 19 | text-align: left; 20 | margin: 0px 0px 20px 0px; 21 | border-top: 2px solid #D4D4D4; 22 | } 23 | 24 | .help-page-table th { 25 | text-align: left; 26 | font-weight: bold; 27 | border-bottom: 2px solid #D4D4D4; 28 | padding: 8px 6px 8px 6px; 29 | } 30 | 31 | .help-page-table td { 32 | border-bottom: 2px solid #D4D4D4; 33 | padding: 15px 8px 15px 8px; 34 | vertical-align: top; 35 | } 36 | 37 | .help-page-table pre, .help-page-table p { 38 | margin: 0px; 39 | padding: 0px; 40 | font-family: inherit; 41 | font-size: 100%; 42 | } 43 | 44 | .help-page-table tbody tr:hover td { 45 | background-color: #F3F3F3; 46 | } 47 | 48 | a:hover { 49 | background-color: transparent; 50 | } 51 | 52 | .sample-header { 53 | border: 2px solid #D4D4D4; 54 | background: #76B8DB; 55 | color: #FFFFFF; 56 | padding: 8px 15px; 57 | border-bottom: none; 58 | display: inline-block; 59 | margin: 10px 0px 0px 0px; 60 | } 61 | 62 | .sample-content { 63 | display: block; 64 | border-width: 0; 65 | padding: 15px 20px; 66 | background: #FFFFFF; 67 | border: 2px solid #D4D4D4; 68 | margin: 0px 0px 10px 0px; 69 | } 70 | 71 | .api-name { 72 | width: 40%; 73 | } 74 | 75 | .api-documentation { 76 | width: 60%; 77 | } 78 | 79 | .parameter-name { 80 | width: 20%; 81 | } 82 | 83 | .parameter-documentation { 84 | width: 50%; 85 | } 86 | 87 | .parameter-source { 88 | width: 30%; 89 | } 90 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/HelpPageAreaRegistration.cs.pp: -------------------------------------------------------------------------------- 1 | using System.Web.Http; 2 | using System.Web.Mvc; 3 | 4 | namespace $rootnamespace$.Areas.HelpPage 5 | { 6 | public class HelpPageAreaRegistration : AreaRegistration 7 | { 8 | public override string AreaName 9 | { 10 | get 11 | { 12 | return "HelpPage"; 13 | } 14 | } 15 | 16 | public override void RegisterArea(AreaRegistrationContext context) 17 | { 18 | context.MapRoute( 19 | "HelpPage_Default", 20 | "Help/{action}/{apiId}", 21 | new { controller = "Help", action = "Index", apiId = UrlParameter.Optional }); 22 | 23 | HelpPageConfig.Register(GlobalConfiguration.Configuration); 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/Models/HelpPageApiModel.cs.pp: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using System.Collections.ObjectModel; 3 | using System.Net.Http.Headers; 4 | using System.Web.Http.Description; 5 | 6 | namespace $rootnamespace$.Areas.HelpPage.Models 7 | { 8 | /// 9 | /// The model that represents an API displayed on the help page. 10 | /// 11 | public class HelpPageApiModel 12 | { 13 | /// 14 | /// Initializes a new instance of the class. 15 | /// 16 | public HelpPageApiModel() 17 | { 18 | SampleRequests = new Dictionary(); 19 | SampleResponses = new Dictionary(); 20 | ErrorMessages = new Collection(); 21 | } 22 | 23 | /// 24 | /// Gets or sets the that describes the API. 25 | /// 26 | public ApiDescription ApiDescription { get; set; } 27 | 28 | /// 29 | /// Gets the sample requests associated with the API. 30 | /// 31 | public IDictionary SampleRequests { get; private set; } 32 | 33 | /// 34 | /// Gets the sample responses associated with the API. 35 | /// 36 | public IDictionary SampleResponses { get; private set; } 37 | 38 | /// 39 | /// Gets the error messages associated with this model. 40 | /// 41 | public Collection ErrorMessages { get; private set; } 42 | } 43 | } -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/SampleGeneration/ImageSample.cs.pp: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace $rootnamespace$.Areas.HelpPage 4 | { 5 | /// 6 | /// This represents an image sample on the help page. There's a display template named ImageSample associated with this class. 7 | /// 8 | public class ImageSample 9 | { 10 | /// 11 | /// Initializes a new instance of the class. 12 | /// 13 | /// The URL of an image. 14 | public ImageSample(string src) 15 | { 16 | if (src == null) 17 | { 18 | throw new ArgumentNullException("src"); 19 | } 20 | Src = src; 21 | } 22 | 23 | public string Src { get; private set; } 24 | 25 | public override bool Equals(object obj) 26 | { 27 | ImageSample other = obj as ImageSample; 28 | return other != null && Src == other.Src; 29 | } 30 | 31 | public override int GetHashCode() 32 | { 33 | return Src.GetHashCode(); 34 | } 35 | 36 | public override string ToString() 37 | { 38 | return Src; 39 | } 40 | } 41 | } -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/SampleGeneration/InvalidSample.cs.pp: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace $rootnamespace$.Areas.HelpPage 4 | { 5 | /// 6 | /// This represents an invalid sample on the help page. There's a display template named InvalidSample associated with this class. 7 | /// 8 | public class InvalidSample 9 | { 10 | public InvalidSample(string errorMessage) 11 | { 12 | if (errorMessage == null) 13 | { 14 | throw new ArgumentNullException("errorMessage"); 15 | } 16 | ErrorMessage = errorMessage; 17 | } 18 | 19 | public string ErrorMessage { get; private set; } 20 | 21 | public override bool Equals(object obj) 22 | { 23 | InvalidSample other = obj as InvalidSample; 24 | return other != null && ErrorMessage == other.ErrorMessage; 25 | } 26 | 27 | public override int GetHashCode() 28 | { 29 | return ErrorMessage.GetHashCode(); 30 | } 31 | 32 | public override string ToString() 33 | { 34 | return ErrorMessage; 35 | } 36 | } 37 | } -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/SampleGeneration/SampleDirection.cs.pp: -------------------------------------------------------------------------------- 1 | namespace $rootnamespace$.Areas.HelpPage 2 | { 3 | /// 4 | /// Indicates whether the sample is used for request or response 5 | /// 6 | public enum SampleDirection 7 | { 8 | Request = 0, 9 | Response 10 | } 11 | } -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/SampleGeneration/TextSample.cs.pp: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace $rootnamespace$.Areas.HelpPage 4 | { 5 | /// 6 | /// This represents a preformatted text sample on the help page. There's a display template named TextSample associated with this class. 7 | /// 8 | public class TextSample 9 | { 10 | public TextSample(string text) 11 | { 12 | if (text == null) 13 | { 14 | throw new ArgumentNullException("text"); 15 | } 16 | Text = text; 17 | } 18 | 19 | public string Text { get; private set; } 20 | 21 | public override bool Equals(object obj) 22 | { 23 | TextSample other = obj as TextSample; 24 | return other != null && Text == other.Text; 25 | } 26 | 27 | public override int GetHashCode() 28 | { 29 | return Text.GetHashCode(); 30 | } 31 | 32 | public override string ToString() 33 | { 34 | return Text; 35 | } 36 | } 37 | } -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/Views/Help/Api.cshtml.pp: -------------------------------------------------------------------------------- 1 | @using System.Web.Http 2 | @using $rootnamespace$.Areas.HelpPage.Models 3 | @model HelpPageApiModel 4 | 5 | @{ 6 | var description = Model.ApiDescription; 7 | ViewBag.Title = description.HttpMethod.Method + " " + description.RelativePath; 8 | } 9 | 10 |
11 | 18 |
19 | @Html.DisplayFor(m => Model) 20 |
21 |
22 | 23 | @section Scripts { 24 | 25 | } -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml.pp: -------------------------------------------------------------------------------- 1 | @using System.Web.Http 2 | @using System.Web.Http.Controllers 3 | @using System.Web.Http.Description 4 | @using $rootnamespace$.Areas.HelpPage 5 | @using $rootnamespace$.Areas.HelpPage.Models 6 | @model IGrouping 7 | 8 | @{ 9 | var controllerDocumentation = ViewBag.DocumentationProvider != null ? 10 | ViewBag.DocumentationProvider.GetDocumentation(Model.Key) : 11 | null; 12 | } 13 | 14 |

@Model.Key.ControllerName

15 | @if (!String.IsNullOrEmpty(controllerDocumentation)) 16 | { 17 |

@controllerDocumentation

18 | } 19 | 20 | 21 | 22 | 23 | 24 | @foreach (var api in Model) 25 | { 26 | 27 | 28 | 38 | 39 | } 40 | 41 |
APIDescription
@api.HttpMethod.Method @api.RelativePath 29 | @if (api.Documentation != null) 30 | { 31 |

@api.Documentation

32 | } 33 | else 34 | { 35 |

No documentation available.

36 | } 37 |
-------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml.pp: -------------------------------------------------------------------------------- 1 | @using System.Web.Http 2 | @using $rootnamespace$.Areas.HelpPage.Models 3 | @model HelpPageApiModel 4 | 5 | @{ 6 | var description = Model.ApiDescription; 7 | bool hasParameters = description.ParameterDescriptions.Count > 0; 8 | bool hasRequestSamples = Model.SampleRequests.Count > 0; 9 | bool hasResponseSamples = Model.SampleResponses.Count > 0; 10 | } 11 |

@description.HttpMethod.Method @description.RelativePath

12 |
13 | @if (description.Documentation != null) 14 | { 15 |

@description.Documentation

16 | } 17 | else 18 | { 19 |

No documentation available.

20 | } 21 | 22 | @if (hasParameters || hasRequestSamples) 23 | { 24 |

Request Information

25 | if (hasParameters) 26 | { 27 |

Parameters

28 | @Html.DisplayFor(apiModel => apiModel.ApiDescription.ParameterDescriptions, "Parameters") 29 | } 30 | if (hasRequestSamples) 31 | { 32 |

Request body formats

33 | @Html.DisplayFor(apiModel => apiModel.SampleRequests, "Samples") 34 | } 35 | } 36 | 37 | @if (hasResponseSamples) 38 | { 39 |

Response Information

40 | if (description.ResponseDescription.Documentation != null) 41 | { 42 |

@description.ResponseDescription.Documentation

43 | } 44 | else 45 | { 46 |

No documentation available.

47 | } 48 |

Response body formats

49 | @Html.DisplayFor(apiModel => apiModel.SampleResponses, "Samples") 50 | } 51 |
-------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml.pp: -------------------------------------------------------------------------------- 1 | @using $rootnamespace$.Areas.HelpPage 2 | @model ImageSample 3 | 4 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml.pp: -------------------------------------------------------------------------------- 1 | @using $rootnamespace$.Areas.HelpPage 2 | @model InvalidSample 3 | 4 | @if (HttpContext.Current.IsDebuggingEnabled) 5 | { 6 |
7 |

@Model.ErrorMessage

8 |
9 | } 10 | else 11 | { 12 |

Sample not available.

13 | } -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml.pp: -------------------------------------------------------------------------------- 1 | @using System.Collections.ObjectModel 2 | @using System.Web.Http.Description 3 | @using System.Threading 4 | @model Collection 5 | 6 | 7 | 8 | 9 | 10 | 11 | @foreach (ApiParameterDescription parameter in Model) 12 | { 13 | string parameterDocumentation = parameter.Documentation != null ? 14 | parameter.Documentation : 15 | "No documentation available."; 16 | 17 | // Don't show CancellationToken because it's a special parameter 18 | if (parameter.ParameterDescriptor == null || 19 | (parameter.ParameterDescriptor != null && 20 | !typeof(CancellationToken).IsAssignableFrom(parameter.ParameterDescriptor.ParameterType))) 21 | { 22 | 23 | 24 | 25 | 40 | 41 | } 42 | } 43 | 44 |
NameDescriptionAdditional information
@parameter.Name
@parameterDocumentation
26 | @switch (parameter.Source) 27 | { 28 | case ApiParameterSource.FromBody: 29 |

Define this parameter in the request body.

30 | break; 31 | case ApiParameterSource.FromUri: 32 |

Define this parameter in the request URI.

33 | break; 34 | case ApiParameterSource.Unknown: 35 | default: 36 |

None.

37 | break; 38 | } 39 |
-------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml.pp: -------------------------------------------------------------------------------- 1 | @using System.Net.Http.Headers 2 | @model Dictionary 3 | 4 | @{ 5 | // Group the samples into a single tab if they are the same. 6 | Dictionary samples = Model.GroupBy(pair => pair.Value).ToDictionary( 7 | pair => String.Join(", ", pair.Select(m => m.Key.ToString()).ToArray()), 8 | pair => pair.Key); 9 | var mediaTypes = samples.Keys; 10 | } 11 |
12 | @foreach (var mediaType in mediaTypes) 13 | { 14 |

@mediaType

15 |
16 | Sample: 17 | @{ 18 | var sample = samples[mediaType]; 19 | if (sample == null) 20 | { 21 |

Sample not available.

22 | } 23 | else 24 | { 25 | @Html.DisplayFor(s => sample); 26 | } 27 | } 28 |
29 | } 30 |
-------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml.pp: -------------------------------------------------------------------------------- 1 | @using $rootnamespace$.Areas.HelpPage 2 | @model TextSample 3 | 4 |
5 | @Model.Text
6 | 
-------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/Views/Help/Index.cshtml.pp: -------------------------------------------------------------------------------- 1 | @using System.Web.Http 2 | @using System.Web.Http.Controllers 3 | @using System.Web.Http.Description 4 | @using System.Collections.ObjectModel 5 | @using $rootnamespace$.Areas.HelpPage.Models 6 | @model Collection 7 | 8 | @{ 9 | ViewBag.Title = "ASP.NET Web API Help Page"; 10 | 11 | // Group APIs by controller 12 | ILookup apiGroups = Model.ToLookup(api => api.ActionDescriptor.ControllerDescriptor); 13 | } 14 | 15 |
16 |
17 |
18 |

@ViewBag.Title

19 |
20 |
21 |
22 |
23 | 31 |
32 | @foreach (var group in apiGroups) 33 | { 34 | @Html.DisplayFor(m => group, "ApiGroup") 35 | } 36 |
37 |
38 | 39 | @section Scripts { 40 | 41 | } -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/Views/Shared/_Layout.cshtml.pp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | @ViewBag.Title 7 | @RenderSection("scripts", required: false) 8 | 9 | 10 | @RenderBody() 11 | 12 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.HelpPage.5.0.0/content/Areas/HelpPage/Views/_ViewStart.cshtml.pp: -------------------------------------------------------------------------------- 1 | @{ 2 | // Change the Layout path below to blend the look and feel of the help page with your existing web pages. 3 | Layout = "~/Areas/HelpPage/Views/Shared/_Layout.cshtml"; 4 | } -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.5.0.0/Microsoft.AspNet.WebApi.WebHost.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.WebHost.5.0.0/Microsoft.AspNet.WebApi.WebHost.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.5.0.0/Microsoft.AspNet.WebApi.WebHost.5.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.WebApi.WebHost 5 | 5.0.0 6 | Microsoft ASP.NET Web API Web Host 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm 10 | http://www.asp.net/web-api 11 | true 12 | This package contains everything you need to host ASP.NET Web API on IIS. ASP.NET Web API is a framework that makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices. ASP.NET Web API is an ideal platform for building RESTful applications on the .NET Framework. 13 | This package contains everything you need to host ASP.NET Web API on IIS. 14 | © Microsoft Corporation. All rights reserved. 15 | en-US 16 | Microsoft AspNet WebApi AspNetWebApi WebHost 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.5.0.0/lib/net45/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.WebHost.5.0.0/lib/net45/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.5.2.2/Microsoft.AspNet.WebApi.WebHost.5.2.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.WebHost.5.2.2/Microsoft.AspNet.WebApi.WebHost.5.2.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.5.2.2/Microsoft.AspNet.WebApi.WebHost.5.2.2.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.WebApi.WebHost 5 | 5.2.2 6 | Microsoft ASP.NET Web API 2.2 Web Host 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/net_library_eula_ENU.htm 10 | http://www.asp.net/web-api 11 | true 12 | This package contains everything you need to host ASP.NET Web API on IIS. ASP.NET Web API is a framework that makes it easy to build HTTP services that reach a broad range of clients, including browsers and mobile devices. ASP.NET Web API is an ideal platform for building RESTful applications on the .NET Framework. 13 | This package contains everything you need to host ASP.NET Web API on IIS. 14 | Please visit http://go.microsoft.com/fwlink/?LinkID=403010 to view the release notes. 15 | © Microsoft Corporation. All rights reserved. 16 | en-US 17 | Microsoft AspNet WebApi AspNetWebApi WebHost 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.5.2.2/lib/net45/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebApi.WebHost.5.2.2/lib/net45/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.0.0/Microsoft.AspNet.WebPages.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebPages.3.0.0/Microsoft.AspNet.WebPages.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.0.0/Microsoft.AspNet.WebPages.3.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.AspNet.WebPages 5 | 3.0.0 6 | Microsoft ASP.NET Web Pages 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_ENU.htm 10 | http://www.asp.net/web-pages 11 | true 12 | This package contains core runtime assemblies shared between ASP.NET MVC and ASP.NET Web Pages. 13 | This package contains core runtime assemblies shared between ASP.NET MVC and ASP.NET Web Pages. 14 | © Microsoft Corporation. All rights reserved. 15 | en-US 16 | Microsoft AspNet WebPages AspNetWebPages 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.Helpers.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.AspNet.WebPages.3.0.0/lib/net45/System.Web.WebPages.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/Microsoft.Data.Edm.5.6.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/Microsoft.Data.Edm.5.6.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/net40/Microsoft.Data.Edm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/net40/Microsoft.Data.Edm.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/net40/de/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/net40/de/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/net40/es/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/net40/es/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/net40/fr/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/net40/fr/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/net40/it/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/net40/it/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/net40/ja/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/net40/ja/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/net40/ko/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/net40/ko/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/net40/ru/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/net40/ru/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/net40/zh-Hans/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/net40/zh-Hans/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/net40/zh-Hant/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/net40/zh-Hant/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/Microsoft.Data.Edm.Portable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/Microsoft.Data.Edm.Portable.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/de/Microsoft.Data.Edm.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/de/Microsoft.Data.Edm.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/es/Microsoft.Data.Edm.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/es/Microsoft.Data.Edm.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/fr/Microsoft.Data.Edm.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/fr/Microsoft.Data.Edm.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/it/Microsoft.Data.Edm.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/it/Microsoft.Data.Edm.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/ja/Microsoft.Data.Edm.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/ja/Microsoft.Data.Edm.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/ko/Microsoft.Data.Edm.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/ko/Microsoft.Data.Edm.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/ru/Microsoft.Data.Edm.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/ru/Microsoft.Data.Edm.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/zh-Hans/Microsoft.Data.Edm.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/zh-Hans/Microsoft.Data.Edm.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/zh-Hant/Microsoft.Data.Edm.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/portable-net40+sl5+wp8+win8/zh-Hant/Microsoft.Data.Edm.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/sl4/Microsoft.Data.Edm.SL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/sl4/Microsoft.Data.Edm.SL.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/sl4/de/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/sl4/de/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/sl4/es/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/sl4/es/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/sl4/fr/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/sl4/fr/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/sl4/it/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/sl4/it/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/sl4/ja/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/sl4/ja/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/sl4/ko/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/sl4/ko/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/sl4/ru/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/sl4/ru/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/sl4/zh-Hans/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/sl4/zh-Hans/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.6.0/lib/sl4/zh-Hant/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Edm.5.6.0/lib/sl4/zh-Hant/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/Microsoft.Data.OData.5.6.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/Microsoft.Data.OData.5.6.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/net40/Microsoft.Data.OData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/net40/Microsoft.Data.OData.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/net40/de/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/net40/de/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/net40/es/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/net40/es/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/net40/fr/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/net40/fr/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/net40/it/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/net40/it/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/net40/ja/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/net40/ja/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/net40/ko/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/net40/ko/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/net40/ru/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/net40/ru/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/net40/zh-Hans/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/net40/zh-Hans/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/net40/zh-Hant/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/net40/zh-Hant/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/Microsoft.Data.OData.Portable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/Microsoft.Data.OData.Portable.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/de/Microsoft.Data.OData.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/de/Microsoft.Data.OData.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/es/Microsoft.Data.OData.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/es/Microsoft.Data.OData.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/fr/Microsoft.Data.OData.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/fr/Microsoft.Data.OData.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/it/Microsoft.Data.OData.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/it/Microsoft.Data.OData.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/ja/Microsoft.Data.OData.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/ja/Microsoft.Data.OData.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/ko/Microsoft.Data.OData.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/ko/Microsoft.Data.OData.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/ru/Microsoft.Data.OData.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/ru/Microsoft.Data.OData.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/zh-Hans/Microsoft.Data.OData.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/zh-Hans/Microsoft.Data.OData.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/zh-Hant/Microsoft.Data.OData.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/portable-net40+sl5+wp8+win8/zh-Hant/Microsoft.Data.OData.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/sl4/Microsoft.Data.OData.SL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/sl4/Microsoft.Data.OData.SL.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/sl4/de/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/sl4/de/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/sl4/es/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/sl4/es/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/sl4/fr/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/sl4/fr/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/sl4/it/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/sl4/it/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/sl4/ja/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/sl4/ja/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/sl4/ko/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/sl4/ko/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/sl4/ru/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/sl4/ru/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/sl4/zh-Hans/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/sl4/zh-Hans/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.6.0/lib/sl4/zh-Hant/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.OData.5.6.0/lib/sl4/zh-Hant/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/Microsoft.Data.Services.Client.5.6.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/Microsoft.Data.Services.Client.5.6.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/Microsoft.Data.Services.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/Microsoft.Data.Services.Client.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/de/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/de/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/es/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/es/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/fr/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/fr/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/it/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/it/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/ja/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/ja/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/ko/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/ko/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/ru/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/ru/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/zh-Hans/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/zh-Hans/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/zh-Hant/Microsoft.Data.Services.Client.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/net40/zh-Hant/Microsoft.Data.Services.Client.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/Microsoft.Data.Services.Client.Portable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/Microsoft.Data.Services.Client.Portable.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/de/Microsoft.Data.Services.Client.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/de/Microsoft.Data.Services.Client.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/es/Microsoft.Data.Services.Client.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/es/Microsoft.Data.Services.Client.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/fr/Microsoft.Data.Services.Client.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/fr/Microsoft.Data.Services.Client.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/it/Microsoft.Data.Services.Client.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/it/Microsoft.Data.Services.Client.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/ja/Microsoft.Data.Services.Client.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/ja/Microsoft.Data.Services.Client.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/ko/Microsoft.Data.Services.Client.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/ko/Microsoft.Data.Services.Client.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/ru/Microsoft.Data.Services.Client.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/ru/Microsoft.Data.Services.Client.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/zh-Hans/Microsoft.Data.Services.Client.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/zh-Hans/Microsoft.Data.Services.Client.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/zh-Hant/Microsoft.Data.Services.Client.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/portable-net45+sl5+wp8+win8/zh-Hant/Microsoft.Data.Services.Client.Portable.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/Microsoft.Data.Services.Client.SL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/Microsoft.Data.Services.Client.SL.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/de/Microsoft.Data.Services.Client.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/de/Microsoft.Data.Services.Client.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/es/Microsoft.Data.Services.Client.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/es/Microsoft.Data.Services.Client.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/fr/Microsoft.Data.Services.Client.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/fr/Microsoft.Data.Services.Client.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/it/Microsoft.Data.Services.Client.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/it/Microsoft.Data.Services.Client.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/ja/Microsoft.Data.Services.Client.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/ja/Microsoft.Data.Services.Client.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/ko/Microsoft.Data.Services.Client.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/ko/Microsoft.Data.Services.Client.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/ru/Microsoft.Data.Services.Client.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/ru/Microsoft.Data.Services.Client.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/zh-Hans/Microsoft.Data.Services.Client.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/zh-Hans/Microsoft.Data.Services.Client.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/zh-Hant/Microsoft.Data.Services.Client.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Data.Services.Client.5.6.0/lib/sl4/zh-Hant/Microsoft.Data.Services.Client.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.3.0.0/Microsoft.Owin.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Owin.3.0.0/Microsoft.Owin.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.3.0.0/Microsoft.Owin.3.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.Owin 5 | 3.0.0 6 | Microsoft.Owin 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm 10 | http://katanaproject.codeplex.com/ 11 | true 12 | Provides a set of helper types and abstractions for simplifying the creation of OWIN components. 13 | Microsoft OWIN Katana 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /packages/Microsoft.Owin.3.0.0/lib/net45/Microsoft.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Owin.3.0.0/lib/net45/Microsoft.Owin.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Cors.3.0.0/Microsoft.Owin.Cors.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Owin.Cors.3.0.0/Microsoft.Owin.Cors.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Cors.3.0.0/Microsoft.Owin.Cors.3.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.Owin.Cors 5 | 3.0.0 6 | Microsoft.Owin.Cors 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm 10 | http://katanaproject.codeplex.com/ 11 | true 12 | This package contains the components to enable Cross-Origin Resource Sharing (CORS) in OWIN middleware. 13 | Microsoft OWIN Katana 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Cors.3.0.0/lib/net45/Microsoft.Owin.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Owin.Cors.3.0.0/lib/net45/Microsoft.Owin.Cors.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.2.0.2/Microsoft.Owin.Host.SystemWeb.2.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Owin.Host.SystemWeb.2.0.2/Microsoft.Owin.Host.SystemWeb.2.0.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.2.0.2/Microsoft.Owin.Host.SystemWeb.2.0.2.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.Owin.Host.SystemWeb 5 | 2.0.2 6 | Microsoft.Owin.Host.SystemWeb 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_enu.htm 10 | http://katanaproject.codeplex.com/ 11 | true 12 | OWIN server that enables OWIN-based applications to run on IIS using the ASP.NET request pipeline. 13 | Microsoft OWIN Katana 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.2.0.2/lib/net40/Microsoft.Owin.Host.SystemWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Owin.Host.SystemWeb.2.0.2/lib/net40/Microsoft.Owin.Host.SystemWeb.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Host.SystemWeb.2.0.2/lib/net45/Microsoft.Owin.Host.SystemWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Owin.Host.SystemWeb.2.0.2/lib/net45/Microsoft.Owin.Host.SystemWeb.dll -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.2.0.2/Microsoft.Owin.Security.2.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Owin.Security.2.0.2/Microsoft.Owin.Security.2.0.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.2.0.2/Microsoft.Owin.Security.2.0.2.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.Owin.Security 5 | 2.0.2 6 | Microsoft.Owin.Security 7 | Microsoft 8 | Microsoft 9 | http://www.microsoft.com/web/webpi/eula/aspnetcomponent_rtw_enu.htm 10 | http://katanaproject.codeplex.com/ 11 | true 12 | Common types which are shared by the various authentication middleware components. 13 | Microsoft OWIN Katana 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /packages/Microsoft.Owin.Security.2.0.2/lib/net45/Microsoft.Owin.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Owin.Security.2.0.2/lib/net45/Microsoft.Owin.Security.dll -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.Web.Infrastructure 5 | 1.0.0.0 6 | Microsoft.Web.Infrastructure 7 | Microsoft 8 | Microsoft 9 | http://go.microsoft.com/fwlink/?LinkID=214339 10 | http://www.asp.net 11 | false 12 | This package contains the Microsoft.Web.Infrastructure assembly that lets you dynamically register HTTP modules at run time. 13 | en-US 14 | 15 | -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /packages/Microsoft.WindowsAzure.ConfigurationManager.2.0.3/Microsoft.WindowsAzure.ConfigurationManager.2.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.WindowsAzure.ConfigurationManager.2.0.3/Microsoft.WindowsAzure.ConfigurationManager.2.0.3.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.WindowsAzure.ConfigurationManager.2.0.3/Microsoft.WindowsAzure.ConfigurationManager.2.0.3.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Microsoft.WindowsAzure.ConfigurationManager 5 | 2.0.3 6 | Windows Azure Configuration Manager 7 | Microsoft 8 | azure-sdk, Microsoft 9 | http://aka.ms/windowsazureapache2 10 | http://go.microsoft.com/fwlink/?linkid=252450 11 | http://go.microsoft.com/fwlink/?LinkID=288890 12 | true 13 | Windows Azure Configuration Manager provides a unified API to load configuration settings regardless of where the application is hosted - whether on-premises or in a Cloud Service. 14 | Windows Azure Configuration Manager provides a unified API to load configuration settings regardless of where the application is hosted - whether on-premises or in a Cloud Service. 15 | Microsoft "Windows Azure" Configuration "Configuration Manager" cloud windowsazureofficial 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /packages/Microsoft.WindowsAzure.ConfigurationManager.2.0.3/lib/net40/Microsoft.WindowsAzure.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Microsoft.WindowsAzure.ConfigurationManager.2.0.3/lib/net40/Microsoft.WindowsAzure.Configuration.dll -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Modernizr.2.6.2.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Modernizr 5 | 2.6.2 6 | Modernizr 7 | Faruk Ateş,Paul Irish,Alex Sexton 8 | Faruk Ateş,Paul Irish,Alex Sexton 9 | http://www.modernizr.com/license/ 10 | http://www.modernizr.com/ 11 | http://www.modernizr.com/i/logo.png 12 | false 13 | Modernizr adds classes to the <html> element which allow you to target specific browser functionality in your stylesheet. You don't actually need to write any Javascript to use it. 14 | Modernizr is a small and simple JavaScript library that helps you take advantage of emerging web technologies (CSS3, HTML5) while still maintaining a fine level of control over older browsers that may not yet support these new technologies. 15 | NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/ 16 | Modernizr is a small and simple JavaScript library that helps you take advantage of emerging web technologies (CSS3, HTML 5) while still maintaining a fine level of control over older browsers that may not yet support these new technologies. 17 | en-US 18 | JavaScript HTML HTML5 CSS CSS3 SVG 19 | 20 | -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | if ($scriptsFolderProjectItem -eq $null) { 6 | # No Scripts folder 7 | Write-Host "No Scripts folder found" 8 | exit 9 | } 10 | 11 | # Update the _references.js file 12 | AddOrUpdate-Reference $scriptsFolderProjectItem $modernizrFileNameRegEx $modernizrFileName -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # Update the _references.js file 6 | Remove-Reference $scriptsFolderProjectItem $modernizrFileNameRegEx -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/Newtonsoft.Json.5.0.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.5.0.6/Newtonsoft.Json.5.0.6.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/Newtonsoft.Json.5.0.6.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Newtonsoft.Json 5 | 5.0.6 6 | Json.NET 7 | James Newton-King 8 | James Newton-King 9 | http://json.codeplex.com/license 10 | http://james.newtonking.com/projects/json-net.aspx 11 | false 12 | Json.NET is a popular high-performance JSON framework for .NET 13 | en-US 14 | json 15 | 16 | -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.5.0.6/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.5.0.6/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.5.0.6/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.5.0.6/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/netcore45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.5.0.6/lib/netcore45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net40%2Bsl4%2Bwp7%2Bwin8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.5.0.6/lib/portable-net40%2Bsl4%2Bwp7%2Bwin8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.5.0.6/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net45%2Bwp80%2Bwin8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.5.0.6/lib/portable-net45%2Bwp80%2Bwin8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.5.0.6/lib/portable-net45+wp80+win8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.5.0.6/lib/portable-net45+wp80+win8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.5/Newtonsoft.Json.6.0.5.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.6.0.5/Newtonsoft.Json.6.0.5.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.5/Newtonsoft.Json.6.0.5.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Newtonsoft.Json 5 | 6.0.5 6 | Json.NET 7 | James Newton-King 8 | James Newton-King 9 | https://raw.github.com/JamesNK/Newtonsoft.Json/master/LICENSE.md 10 | http://james.newtonking.com/json 11 | false 12 | Json.NET is a popular high-performance JSON framework for .NET 13 | en-US 14 | json 15 | 16 | -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.5/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.6.0.5/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.5/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.6.0.5/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.5/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.6.0.5/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.5/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.6.0.5/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.5/lib/netcore45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.6.0.5/lib/netcore45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.5/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.6.0.5/lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.6.0.5/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Newtonsoft.Json.6.0.5/lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Owin.1.0/Owin.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Owin.1.0/Owin.1.0.nupkg -------------------------------------------------------------------------------- /packages/Owin.1.0/Owin.1.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Owin 5 | 1.0 6 | OWIN 7 | OWIN startup components contributors 8 | OWIN startup components contributors 9 | https://github.com/owin-contrib/owin-hosting/blob/master/LICENSE.txt 10 | https://github.com/owin-contrib/owin-hosting/ 11 | false 12 | OWIN IAppBuilder startup interface 13 | OWIN 14 | 15 | -------------------------------------------------------------------------------- /packages/Owin.1.0/lib/net40/Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Owin.1.0/lib/net40/Owin.dll -------------------------------------------------------------------------------- /packages/Respond.1.2.0/Respond.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/Respond.1.2.0/Respond.1.2.0.nupkg -------------------------------------------------------------------------------- /packages/Respond.1.2.0/Respond.1.2.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Respond 5 | 1.2.0 6 | Respond JS 7 | Scott Jehl 8 | Scott Jehl,scottjehl.com 9 | https://github.com/scottjehl/Respond 10 | https://github.com/scottjehl/Respond 11 | true 12 | The goal of this script is to provide a fast and lightweight (3kb minified / 1kb gzipped) script to enable responsive web designs in browsers that don't support CSS3 Media Queries - in particular, Internet Explorer 8 and under. It's written in such a way that it will probably patch support for other non-supporting browsers as well (more information on that soon). 13 | A fast & lightweight polyfill for min/max-width CSS3 Media Queries (for IE 6-8, and more) 14 | Merge pull request #104 from scottjehl/cross-domain Resolves Issue #59: Cross domain CSS files with ? in URL won't load 15 | 2011: Scott Jehl, scottjehl.com 16 | Respond, Media Queries 17 | 18 | -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/System.Spatial.5.6.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/System.Spatial.5.6.0.nupkg -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/net40/System.Spatial.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/net40/System.Spatial.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/net40/de/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/net40/de/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/net40/es/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/net40/es/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/net40/fr/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/net40/fr/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/net40/it/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/net40/it/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/net40/ja/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/net40/ja/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/net40/ko/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/net40/ko/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/net40/ru/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/net40/ru/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/net40/zh-Hans/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/net40/zh-Hans/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/net40/zh-Hant/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/net40/zh-Hant/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/System.Spatial.Portable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/System.Spatial.Portable.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/de/System.Spatial.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/de/System.Spatial.Portable.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/es/System.Spatial.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/es/System.Spatial.Portable.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/fr/System.Spatial.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/fr/System.Spatial.Portable.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/it/System.Spatial.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/it/System.Spatial.Portable.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/ja/System.Spatial.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/ja/System.Spatial.Portable.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/ko/System.Spatial.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/ko/System.Spatial.Portable.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/ru/System.Spatial.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/ru/System.Spatial.Portable.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/zh-Hans/System.Spatial.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/zh-Hans/System.Spatial.Portable.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/zh-Hant/System.Spatial.Portable.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/portable-net40+sl5+wp8+win8/zh-Hant/System.Spatial.Portable.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/sl4/System.Spatial.SL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/sl4/System.Spatial.SL.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/sl4/de/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/sl4/de/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/sl4/es/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/sl4/es/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/sl4/fr/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/sl4/fr/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/sl4/it/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/sl4/it/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/sl4/ja/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/sl4/ja/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/sl4/ko/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/sl4/ko/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/sl4/ru/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/sl4/ru/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/sl4/zh-Hans/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/sl4/zh-Hans/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.6.0/lib/sl4/zh-Hant/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/System.Spatial.5.6.0/lib/sl4/zh-Hant/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/WebGrease.1.5.2.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | WebGrease 5 | 1.5.2 6 | webgrease@microsoft.com 7 | Microsoft 8 | http://www.microsoft.com/web/webpi/eula/msn_webgrease_eula.htm 9 | true 10 | Web Grease is a suite of tools for optimizing javascript, css files and images. 11 | en-US 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/lib/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/WebGrease.1.5.2/lib/WebGrease.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.5.2/tools/WG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/WebGrease.1.5.2/tools/WG.exe -------------------------------------------------------------------------------- /packages/WindowsAzure.Storage.3.0.3.0/WindowsAzure.Storage.3.0.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/WindowsAzure.Storage.3.0.3.0/WindowsAzure.Storage.3.0.3.0.nupkg -------------------------------------------------------------------------------- /packages/WindowsAzure.Storage.3.0.3.0/lib/net40/Microsoft.WindowsAzure.Storage.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/WindowsAzure.Storage.3.0.3.0/lib/net40/Microsoft.WindowsAzure.Storage.dll -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/bootstrap.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/bootstrap.3.0.0/bootstrap.3.0.0.nupkg -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/bootstrap.3.0.0.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | bootstrap 5 | 3.0.0 6 | Mark Otto,Jacob Thornton 7 | outercurve 8 | https://github.com/twbs/bootstrap/blob/master/LICENSE 9 | https://github.com/twbs/bootstrap 10 | https://github.com/twbs/bootstrap/blob/master/assets/ico/apple-touch-icon-72-precomposed.png 11 | false 12 | Sleek, intuitive, and powerful front-end framework for faster and easier web development. 13 | 14 | Copyright 2012 15 | Twitter bootstrap html5 css3 16 | 17 | -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Tools/install.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # VS 11 and above supports the new intellisense JS files 6 | $vsVersion = [System.Version]::Parse($dte.Version) 7 | $supportsJsIntelliSenseFile = $vsVersion.Major -ge 11 8 | 9 | if (-not $supportsJsIntelliSenseFile) { 10 | $displayVersion = $vsVersion.Major 11 | Write-Host "IntelliSense JS files are not supported by your version of Visual Studio: $displayVersion" 12 | exit 13 | } 14 | 15 | if ($scriptsFolderProjectItem -eq $null) { 16 | # No Scripts folder 17 | Write-Host "No Scripts folder found" 18 | exit 19 | } 20 | 21 | # Delete the vsdoc file from the project 22 | try { 23 | $vsDocProjectItem = $scriptsFolderProjectItem.ProjectItems.Item("jquery-$ver-vsdoc.js") 24 | Delete-ProjectItem $vsDocProjectItem 25 | } 26 | catch { 27 | Write-Host "Error deleting vsdoc file: " + $_.Exception -ForegroundColor Red 28 | exit 29 | } 30 | 31 | # Copy the intellisense file to the project from the tools folder 32 | $intelliSenseFileSourcePath = Join-Path $toolsPath $intelliSenseFileName 33 | try { 34 | $scriptsFolderProjectItem.ProjectItems.AddFromFileCopy($intelliSenseFileSourcePath) 35 | } 36 | catch { 37 | # This will throw if the file already exists, so we need to catch here 38 | } 39 | 40 | # Update the _references.js file 41 | AddOrUpdate-Reference $scriptsFolderProjectItem $jqueryFileNameRegEx $jqueryFileName -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/Tools/uninstall.ps1: -------------------------------------------------------------------------------- 1 | param($installPath, $toolsPath, $package, $project) 2 | 3 | . (Join-Path $toolsPath common.ps1) 4 | 5 | # Determine the file paths 6 | $projectIntelliSenseFilePath = Join-Path $projectScriptsFolderPath $intelliSenseFileName 7 | $origIntelliSenseFilePath = Join-Path $toolsPath $intelliSenseFileName 8 | 9 | if (Test-Path $projectIntelliSenseFilePath) { 10 | if ((Get-Checksum $projectIntelliSenseFilePath) -eq (Get-Checksum $origIntelliSenseFilePath)) { 11 | # The intellisense file in the project matches the file in the tools folder, delete it 12 | 13 | if ($scriptsFolderProjectItem -eq $null) { 14 | # No Scripts folder 15 | exit 16 | } 17 | 18 | try { 19 | # Get the project item for the intellisense file 20 | $intelliSenseFileProjectItem = $scriptsFolderProjectItem.ProjectItems.Item($intelliSenseFileName) 21 | } 22 | catch { 23 | # The item wasn't found 24 | exit 25 | } 26 | 27 | # Delete the project item 28 | Delete-ProjectItem $intelliSenseFileProjectItem 29 | } 30 | else { 31 | $projectScriptsFolderLeaf = Split-Path $projectScriptsFolderPath -Leaf 32 | Write-Host "Skipping '$projectScriptsFolderLeaf\$intelliSenseFileName' because it was modified." -ForegroundColor Magenta 33 | } 34 | } 35 | else { 36 | # The intellisense file was not found in project 37 | Write-Host "The intellisense file was not found in project at path $projectIntelliSenseFilePath" 38 | } 39 | 40 | # Update the _references.js file 41 | Remove-Reference $scriptsFolderProjectItem $jqueryFileNameRegEx -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/jQuery.1.10.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sitepoint-editors/SitePointTutorialBackendServer/bbd8a7114d029f752b47168815eb5be820c91310/packages/jQuery.1.10.2/jQuery.1.10.2.nupkg -------------------------------------------------------------------------------- /packages/jQuery.1.10.2/jQuery.1.10.2.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | jQuery 5 | 1.10.2 6 | jQuery 7 | jQuery Foundation,Inc. 8 | jQuery Foundation,Inc. 9 | http://jquery.org/license 10 | http://jquery.com/ 11 | false 12 | jQuery is a new kind of JavaScript Library. 13 | jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. jQuery is designed to change the way that you write JavaScript. 14 | NOTE: This package is maintained on behalf of the library owners by the NuGet Community Packages project at http://nugetpackages.codeplex.com/ 15 | en-US 16 | jQuery 17 | 18 | -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | --------------------------------------------------------------------------------