├── CustmParameterBindingUnitTest ├── CustmParameterBindingUnitTest.csproj ├── Properties │ └── AssemblyInfo.cs ├── UnitTest1.cs ├── app.config ├── bin │ └── Debug │ │ ├── CustmParameterBindingUnitTest.dll │ │ ├── CustmParameterBindingUnitTest.dll.config │ │ ├── CustmParameterBindingUnitTest.pdb │ │ ├── MvcWebApi.dll │ │ ├── MvcWebApi.pdb │ │ ├── Newtonsoft.Json.dll │ │ ├── Newtonsoft.Json.xml │ │ ├── System.Web.Http.WebHost.dll │ │ ├── System.Web.Http.WebHost.xml │ │ ├── System.Web.Http.dll │ │ ├── System.Web.Http.xml │ │ ├── System.Web.Mvc.dll │ │ ├── System.Web.Mvc.xml │ │ ├── System.Web.Optimization.dll │ │ ├── xunit.abstractions.dll │ │ ├── xunit.assert.dll │ │ ├── xunit.assert.pdb │ │ ├── xunit.assert.xml │ │ ├── xunit.core.dll │ │ ├── xunit.core.pdb │ │ ├── xunit.core.xml │ │ ├── xunit.execution.desktop.dll │ │ ├── xunit.runner.utility.desktop.dll │ │ ├── xunit.runner.visualstudio.testadapter.dll │ │ └── zh-Hans │ │ ├── System.Web.Http.WebHost.resources.dll │ │ ├── System.Web.Http.resources.dll │ │ ├── System.Web.Mvc.resources.dll │ │ └── System.Web.Optimization.resources.dll ├── obj │ └── Debug │ │ ├── CustmParameterBindingUnitTest.csproj.FileListAbsolute.txt │ │ ├── CustmParameterBindingUnitTest.csprojResolveAssemblyReference.cache │ │ ├── CustmParameterBindingUnitTest.dll │ │ ├── CustmParameterBindingUnitTest.pdb │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config ├── MvcWebApi.sln ├── MvcWebApi.v12.suo ├── MvcWebApi ├── App_Start │ ├── BundleConfig.cs │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.cs ├── Content │ ├── WebApiTestClient.styles.css │ └── WebApiTestClient.views.html ├── Controllers │ ├── HomeController.cs │ └── ProductController.cs ├── Global.asax ├── Global.asax.cs ├── Images │ ├── accent.png │ ├── bullet.png │ ├── heroAccent.png │ ├── orderedList0.png │ ├── orderedList1.png │ ├── orderedList2.png │ ├── orderedList3.png │ ├── orderedList4.png │ ├── orderedList5.png │ ├── orderedList6.png │ ├── orderedList7.png │ ├── orderedList8.png │ └── orderedList9.png ├── Models │ ├── Product.cs │ └── User.cs ├── MvcWebApi.csproj ├── MvcWebApi.csproj.user ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── WebApiTestClient.js │ ├── _references.js │ ├── jquery-1.8.2.intellisense.js │ ├── jquery-1.8.2.js │ ├── jquery-1.8.2.min.js │ ├── jquery-ui-1.9.2.js │ ├── jquery-ui-1.9.2.min.js │ ├── jquery.unobtrusive-ajax.js │ ├── jquery.unobtrusive-ajax.min.js │ ├── jquery.validate-vsdoc.js │ ├── jquery.validate.js │ ├── jquery.validate.min.js │ ├── jquery.validate.unobtrusive.js │ ├── jquery.validate.unobtrusive.min.js │ ├── knockout-2.2.0.debug.js │ ├── knockout-2.2.0.js │ └── modernizr-2.6.2.js ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── bin │ ├── Antlr3.Runtime.dll │ ├── EntityFramework.dll │ ├── EntityFramework.xml │ ├── Microsoft.Data.Edm.dll │ ├── Microsoft.Data.Edm.xml │ ├── Microsoft.Data.OData.dll │ ├── Microsoft.Data.OData.xml │ ├── Microsoft.Web.Infrastructure.dll │ ├── Microsoft.Web.Mvc.FixedDisplayModes.dll │ ├── MvcWebApi.dll │ ├── MvcWebApi.dll.config │ ├── MvcWebApi.pdb │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.xml │ ├── System.Net.Http.Formatting.dll │ ├── System.Net.Http.Formatting.xml │ ├── System.Spatial.dll │ ├── System.Spatial.xml │ ├── System.Web.Helpers.dll │ ├── System.Web.Helpers.xml │ ├── System.Web.Http.OData.dll │ ├── System.Web.Http.OData.xml │ ├── System.Web.Http.Tracing.dll │ ├── System.Web.Http.Tracing.xml │ ├── System.Web.Http.WebHost.dll │ ├── System.Web.Http.WebHost.xml │ ├── System.Web.Http.dll │ ├── System.Web.Http.xml │ ├── System.Web.Mvc.dll │ ├── System.Web.Mvc.xml │ ├── System.Web.Optimization.dll │ ├── System.Web.Providers.dll │ ├── System.Web.Razor.dll │ ├── System.Web.Razor.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 │ ├── WebApiTestClient.dll │ ├── WebGrease.dll │ ├── de │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ └── System.Spatial.resources.dll │ ├── es │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ └── System.Spatial.resources.dll │ ├── fr │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ └── System.Spatial.resources.dll │ ├── it │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ └── System.Spatial.resources.dll │ ├── ja │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ └── System.Spatial.resources.dll │ ├── ko │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ └── System.Spatial.resources.dll │ ├── ru │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ └── System.Spatial.resources.dll │ ├── zh-Hans │ │ ├── EntityFramework.resources.dll │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ ├── System.Net.Http.Formatting.resources.dll │ │ ├── System.Spatial.resources.dll │ │ ├── System.Web.Helpers.resources.dll │ │ ├── System.Web.Http.OData.resources.dll │ │ ├── System.Web.Http.Tracing.resources.dll │ │ ├── System.Web.Http.WebHost.resources.dll │ │ ├── System.Web.Http.resources.dll │ │ ├── System.Web.Mvc.resources.dll │ │ ├── System.Web.Optimization.resources.dll │ │ ├── System.Web.Providers.resources.dll │ │ ├── System.Web.Razor.resources.dll │ │ ├── System.Web.WebPages.Deployment.resources.dll │ │ ├── System.Web.WebPages.Razor.resources.dll │ │ └── System.Web.WebPages.resources.dll │ └── zh-Hant │ │ ├── Microsoft.Data.Edm.resources.dll │ │ ├── Microsoft.Data.OData.resources.dll │ │ └── System.Spatial.resources.dll ├── favicon.ico ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── MvcWebApi.csproj.FileListAbsolute.txt │ │ ├── MvcWebApi.csprojResolveAssemblyReference.cache │ │ ├── MvcWebApi.dll │ │ ├── MvcWebApi.pdb │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── packages.config └── packages ├── EntityFramework.5.0.0 ├── Content │ ├── App.config.transform │ └── Web.config.transform ├── EntityFramework.5.0.0.nupkg ├── lib │ ├── net40 │ │ ├── EntityFramework.dll │ │ ├── EntityFramework.xml │ │ └── zh-Hans │ │ │ ├── EntityFramework.resources.dll │ │ │ └── EntityFramework.xml │ └── net45 │ │ ├── EntityFramework.dll │ │ ├── EntityFramework.xml │ │ └── zh-Hans │ │ ├── EntityFramework.resources.dll │ │ └── EntityFramework.xml └── tools │ ├── EntityFramework.PS3.psd1 │ ├── EntityFramework.PowerShell.Utility.dll │ ├── EntityFramework.PowerShell.dll │ ├── EntityFramework.psd1 │ ├── EntityFramework.psm1 │ ├── Redirect.VS11.config │ ├── Redirect.config │ ├── about_EntityFramework.help.txt │ ├── init.ps1 │ ├── install.ps1 │ └── migrate.exe ├── EntityFramework.zh-Hans.5.0.0 ├── EntityFramework.zh-Hans.5.0.0.nupkg └── lib │ ├── net40 │ └── zh-Hans │ │ ├── EntityFramework.resources.dll │ │ └── EntityFramework.xml │ └── net45 │ └── zh-Hans │ ├── EntityFramework.resources.dll │ └── EntityFramework.xml ├── Microsoft.AspNet.Mvc.4.0.30506.0 ├── Microsoft.AspNet.Mvc.4.0.30506.0.nupkg └── lib │ └── net40 │ ├── System.Web.Mvc.dll │ ├── System.Web.Mvc.xml │ └── zh-Hans │ ├── System.Web.Mvc.resources.dll │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0 ├── Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0.nupkg └── lib │ └── net40 │ └── Microsoft.Web.Mvc.FixedDisplayModes.dll ├── Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0 ├── Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0.nupkg └── lib │ └── net40 │ └── zh-Hans │ ├── System.Web.Mvc.resources.dll │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Providers.Core.1.2 ├── Microsoft.AspNet.Providers.Core.1.2.nupkg ├── lib │ └── net40 │ │ ├── System.Web.Providers.dll │ │ └── zh-Hans │ │ └── System.Web.Providers.resources.dll └── readme.html ├── Microsoft.AspNet.Providers.Core.zh-Hans.1.2 ├── Microsoft.AspNet.Providers.Core.zh-Hans.1.2.nupkg └── lib │ └── net40 │ └── zh-Hans │ └── System.Web.Providers.resources.dll ├── Microsoft.AspNet.Providers.LocalDB.1.1 ├── Microsoft.AspNet.Providers.LocalDB.1.1.nupkg ├── content │ └── web.config.transform └── tools │ └── Install.ps1 ├── Microsoft.AspNet.Razor.2.0.30506.0 ├── Microsoft.AspNet.Razor.2.0.30506.0.nupkg └── lib │ └── net40 │ ├── System.Web.Razor.dll │ ├── System.Web.Razor.xml │ └── zh-Hans │ ├── System.Web.Razor.resources.dll │ └── system.web.razor.xml ├── Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0 ├── Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0.nupkg └── lib │ └── net40 │ └── zh-Hans │ ├── System.Web.Razor.resources.dll │ └── system.web.razor.xml ├── Microsoft.AspNet.Web.Optimization.1.0.0 ├── Microsoft.AspNet.Web.Optimization.1.0.0.nupkg └── lib │ └── net40 │ ├── System.Web.Optimization.dll │ └── zh-Hans │ └── System.Web.Optimization.resources.dll ├── Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0 ├── Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0.nupkg └── lib │ └── net40 │ └── zh-Hans │ └── System.Web.Optimization.resources.dll ├── Microsoft.AspNet.WebApi.4.0.30506.0 └── Microsoft.AspNet.WebApi.4.0.30506.0.nupkg ├── Microsoft.AspNet.WebApi.Client.5.0.0 ├── Microsoft.AspNet.WebApi.Client.5.0.0.nupkg └── lib │ ├── net45 │ ├── System.Net.Http.Formatting.dll │ ├── System.Net.Http.Formatting.xml │ └── zh-Hans │ │ ├── System.Net.Http.Formatting.resources.dll │ │ └── System.Net.Http.Formatting.xml │ └── portable-wp8+netcore45+net45 │ ├── System.Net.Http.Formatting.dll │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Client.zh-Hans.5.0.0 ├── Microsoft.AspNet.WebApi.Client.zh-Hans.5.0.0.nupkg └── lib │ └── net45 │ └── zh-Hans │ ├── System.Net.Http.Formatting.resources.dll │ └── System.Net.Http.Formatting.xml ├── Microsoft.AspNet.WebApi.Core.5.0.0 ├── Microsoft.AspNet.WebApi.Core.5.0.0.nupkg ├── content │ └── web.config.transform └── lib │ └── net45 │ ├── System.Web.Http.dll │ ├── System.Web.Http.xml │ └── zh-Hans │ ├── System.Web.Http.resources.dll │ └── System.Web.Http.xml ├── Microsoft.AspNet.WebApi.Core.zh-Hans.5.0.0 ├── Microsoft.AspNet.WebApi.Core.zh-Hans.5.0.0.nupkg └── lib │ └── net45 │ └── zh-Hans │ ├── System.Web.Http.resources.dll │ └── System.Web.Http.xml ├── Microsoft.AspNet.WebApi.OData.4.0.30506 ├── Microsoft.AspNet.WebApi.OData.4.0.30506.nupkg └── lib │ └── net40 │ ├── System.Web.Http.OData.dll │ ├── System.Web.Http.Odata.xml │ └── zh-Hans │ ├── System.Web.Http.OData.resources.dll │ └── System.Web.Http.OData.xml ├── Microsoft.AspNet.WebApi.OData.zh-Hans.4.0.30506 ├── Microsoft.AspNet.WebApi.OData.zh-Hans.4.0.30506.nupkg └── lib │ └── net40 │ └── zh-Hans │ ├── System.Web.Http.OData.resources.dll │ └── System.Web.Http.OData.xml ├── Microsoft.AspNet.WebApi.Tracing.4.0.30506 ├── Microsoft.AspNet.WebApi.Tracing.4.0.30506.nupkg ├── ReadMe.txt └── lib │ └── net40 │ ├── System.Web.Http.Tracing.dll │ ├── System.Web.Http.Tracing.xml │ └── zh-Hans │ ├── System.Web.Http.Tracing.resources.dll │ └── System.Web.Http.Tracing.xml ├── Microsoft.AspNet.WebApi.Tracing.zh-Hans.4.0.30506 ├── Microsoft.AspNet.WebApi.Tracing.zh-Hans.4.0.30506.nupkg └── lib │ └── net40 │ └── zh-Hans │ ├── System.Web.Http.Tracing.resources.dll │ └── System.Web.Http.Tracing.xml ├── Microsoft.AspNet.WebApi.WebHost.5.0.0 ├── Microsoft.AspNet.WebApi.WebHost.5.0.0.nupkg └── lib │ └── net45 │ ├── System.Web.Http.WebHost.dll │ ├── System.Web.Http.WebHost.xml │ └── zh-Hans │ ├── System.Web.Http.WebHost.resources.dll │ └── System.Web.Http.WebHost.xml ├── Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.0.0 ├── Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.0.0.nupkg └── lib │ └── net45 │ └── zh-Hans │ ├── System.Web.Http.WebHost.resources.dll │ └── System.Web.Http.WebHost.xml ├── Microsoft.AspNet.WebPages.2.0.30506.0 ├── Microsoft.AspNet.WebPages.2.0.30506.0.nupkg └── lib │ └── net40 │ ├── 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 │ └── zh-Hans │ ├── System.Web.Helpers.resources.dll │ ├── System.Web.WebPages.Deployment.resources.dll │ ├── System.Web.WebPages.Razor.resources.dll │ ├── System.Web.WebPages.resources.dll │ ├── system.web.helpers.xml │ ├── system.web.webpages.deployment.xml │ ├── system.web.webpages.razor.xml │ └── system.web.webpages.xml ├── Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0 ├── Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0.nupkg └── lib │ └── net40 │ └── zh-Hans │ ├── System.Web.Helpers.resources.dll │ ├── System.Web.WebPages.Deployment.resources.dll │ ├── System.Web.WebPages.Razor.resources.dll │ ├── System.Web.WebPages.resources.dll │ ├── system.web.helpers.xml │ ├── system.web.webpages.deployment.xml │ ├── system.web.webpages.razor.xml │ └── system.web.webpages.xml ├── Microsoft.Data.Edm.5.2.0 ├── Microsoft.Data.Edm.5.2.0.nupkg └── 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 │ └── 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.2.0 ├── Microsoft.Data.OData.5.2.0.nupkg └── 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 │ └── 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.Net.Http.2.0.20710.0 ├── Microsoft.Net.Http.2.0.20710.0.nupkg └── lib │ ├── net40 │ ├── System.Net.Http.WebRequest.dll │ ├── System.Net.Http.WebRequest.xml │ ├── System.Net.Http.dll │ ├── System.Net.Http.xml │ └── zh-Hans │ │ ├── System.Net.Http.WebRequest.resources.dll │ │ ├── System.Net.Http.WebRequest.xml │ │ ├── System.Net.Http.resources.dll │ │ └── System.Net.Http.xml │ └── net45 │ └── _._ ├── Microsoft.Net.Http.zh-Hans.2.0.20710.0 ├── Microsoft.Net.Http.zh-Hans.2.0.20710.0.nupkg └── lib │ └── net40 │ └── zh-Hans │ ├── System.Net.Http.WebRequest.resources.dll │ ├── System.Net.Http.WebRequest.xml │ ├── System.Net.Http.resources.dll │ └── System.Net.Http.xml ├── Microsoft.Web.Infrastructure.1.0.0.0 ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg └── lib │ └── net40 │ └── Microsoft.Web.Infrastructure.dll ├── Microsoft.jQuery.Unobtrusive.Ajax.2.0.30506.0 ├── Content │ └── Scripts │ │ ├── jquery.unobtrusive-ajax.js │ │ └── jquery.unobtrusive-ajax.min.js └── Microsoft.jQuery.Unobtrusive.Ajax.2.0.30506.0.nupkg ├── Microsoft.jQuery.Unobtrusive.Validation.2.0.30506.0 ├── Content │ └── Scripts │ │ ├── jquery.validate.unobtrusive.js │ │ └── jquery.validate.unobtrusive.min.js └── Microsoft.jQuery.Unobtrusive.Validation.2.0.30506.0.nupkg ├── Modernizr.2.6.2 ├── Content │ └── Scripts │ │ └── modernizr-2.6.2.js ├── Modernizr.2.6.2.nupkg └── Tools │ ├── common.ps1 │ ├── install.ps1 │ └── uninstall.ps1 ├── Newtonsoft.Json.4.5.11 ├── Newtonsoft.Json.4.5.11.nupkg └── lib │ ├── net20 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── net35 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── net40 │ ├── 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 │ ├── sl3-wp │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── sl4-windowsphone71 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ ├── sl4 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml │ └── winrt45 │ ├── Newtonsoft.Json.dll │ └── Newtonsoft.Json.xml ├── System.Spatial.5.2.0 ├── System.Spatial.5.2.0.nupkg └── 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 │ └── 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.3.0 ├── WebGrease.1.3.0.nupkg ├── lib │ ├── Antlr3.Runtime.dll │ └── WebGrease.dll └── tools │ └── WG.exe ├── jQuery.1.8.2 ├── Content │ └── Scripts │ │ ├── jquery-1.8.2-vsdoc.js │ │ ├── jquery-1.8.2.js │ │ └── jquery-1.8.2.min.js ├── Tools │ ├── common.ps1 │ ├── install.ps1 │ ├── jquery-1.8.2.intellisense.js │ └── uninstall.ps1 └── jQuery.1.8.2.nupkg ├── jQuery.UI.Combined.1.9.2 ├── Content │ ├── Content │ │ └── themes │ │ │ └── base │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui.css │ │ │ ├── jquery.ui.accordion.css │ │ │ ├── jquery.ui.all.css │ │ │ ├── jquery.ui.autocomplete.css │ │ │ ├── jquery.ui.base.css │ │ │ ├── jquery.ui.button.css │ │ │ ├── jquery.ui.core.css │ │ │ ├── jquery.ui.datepicker.css │ │ │ ├── jquery.ui.dialog.css │ │ │ ├── jquery.ui.menu.css │ │ │ ├── jquery.ui.progressbar.css │ │ │ ├── jquery.ui.resizable.css │ │ │ ├── jquery.ui.selectable.css │ │ │ ├── jquery.ui.slider.css │ │ │ ├── jquery.ui.spinner.css │ │ │ ├── jquery.ui.tabs.css │ │ │ ├── jquery.ui.theme.css │ │ │ ├── jquery.ui.tooltip.css │ │ │ └── minified │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ ├── jquery-ui.min.css │ │ │ ├── jquery.ui.accordion.min.css │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ ├── jquery.ui.button.min.css │ │ │ ├── jquery.ui.core.min.css │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ ├── jquery.ui.dialog.min.css │ │ │ ├── jquery.ui.menu.min.css │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ ├── jquery.ui.resizable.min.css │ │ │ ├── jquery.ui.selectable.min.css │ │ │ ├── jquery.ui.slider.min.css │ │ │ ├── jquery.ui.spinner.min.css │ │ │ ├── jquery.ui.tabs.min.css │ │ │ ├── jquery.ui.theme.min.css │ │ │ └── jquery.ui.tooltip.min.css │ └── Scripts │ │ ├── jquery-ui-1.9.2.js │ │ └── jquery-ui-1.9.2.min.js ├── Tools │ ├── common.ps1 │ ├── install.ps1 │ └── uninstall.ps1 └── jQuery.UI.Combined.1.9.2.nupkg ├── jQuery.Validation.1.10.0 ├── Content │ └── Scripts │ │ ├── jquery.validate-vsdoc.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js └── jQuery.Validation.1.10.0.nupkg ├── knockoutjs.2.2.0 ├── Content │ └── Scripts │ │ ├── knockout-2.2.0.debug.js │ │ └── knockout-2.2.0.js └── knockoutjs.2.2.0.nupkg ├── matthewcv.WebApiTestClient.1.2.0 ├── Content │ ├── Content │ │ ├── WebApiTestClient.styles.css │ │ └── WebApiTestClient.views.html │ └── Scripts │ │ └── WebApiTestClient.js ├── lib │ └── net45 │ │ └── WebApiTestClient.dll └── matthewcv.WebApiTestClient.1.2.0.nupkg ├── repositories.config ├── xunit.2.1.0 └── xunit.2.1.0.nupkg ├── xunit.abstractions.2.0.0 ├── lib │ ├── net35 │ │ ├── xunit.abstractions.dll │ │ └── xunit.abstractions.xml │ └── portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS │ │ ├── xunit.abstractions.dll │ │ └── xunit.abstractions.xml └── xunit.abstractions.2.0.0.nupkg ├── xunit.assert.2.1.0 ├── lib │ ├── dotnet │ │ ├── xunit.assert.dll │ │ ├── xunit.assert.pdb │ │ └── xunit.assert.xml │ └── portable-net45+win8+wp8+wpa81 │ │ ├── xunit.assert.dll │ │ ├── xunit.assert.pdb │ │ └── xunit.assert.xml └── xunit.assert.2.1.0.nupkg ├── xunit.core.2.1.0 ├── build │ ├── _desktop │ │ └── xunit.execution.desktop.dll │ ├── dnx451 │ │ └── _._ │ ├── monoandroid │ │ └── _._ │ ├── monotouch │ │ └── _._ │ ├── net45 │ │ └── _._ │ ├── portable-net45+win8+wp8+wpa81 │ │ └── xunit.core.props │ ├── win8 │ │ └── _._ │ ├── win81 │ │ └── xunit.core.props │ ├── wp8 │ │ └── _._ │ ├── wpa81 │ │ └── xunit.core.props │ └── xamarinios │ │ └── _._ └── xunit.core.2.1.0.nupkg ├── xunit.extensibility.core.2.1.0 ├── lib │ ├── dotnet │ │ ├── xunit.core.dll │ │ ├── xunit.core.dll.tdnet │ │ ├── xunit.core.pdb │ │ ├── xunit.core.xml │ │ ├── xunit.runner.tdnet.dll │ │ └── xunit.runner.utility.desktop.dll │ └── portable-net45+win8+wp8+wpa81 │ │ ├── xunit.core.dll │ │ ├── xunit.core.dll.tdnet │ │ ├── xunit.core.pdb │ │ ├── xunit.core.xml │ │ ├── xunit.runner.tdnet.dll │ │ └── xunit.runner.utility.desktop.dll └── xunit.extensibility.core.2.1.0.nupkg ├── xunit.extensibility.execution.2.1.0 ├── lib │ ├── dnx451 │ │ ├── xunit.execution.dotnet.dll │ │ ├── xunit.execution.dotnet.pdb │ │ └── xunit.execution.dotnet.xml │ ├── dotnet │ │ ├── xunit.execution.dotnet.dll │ │ ├── xunit.execution.dotnet.pdb │ │ └── xunit.execution.dotnet.xml │ ├── monoandroid │ │ ├── xunit.execution.dotnet.dll │ │ ├── xunit.execution.dotnet.pdb │ │ └── xunit.execution.dotnet.xml │ ├── monotouch │ │ ├── xunit.execution.dotnet.dll │ │ ├── xunit.execution.dotnet.pdb │ │ └── xunit.execution.dotnet.xml │ ├── net45 │ │ ├── xunit.execution.desktop.dll │ │ ├── xunit.execution.desktop.pdb │ │ └── xunit.execution.desktop.xml │ ├── portable-net45+win8+wp8+wpa81 │ │ ├── xunit.execution.dotnet.dll │ │ ├── xunit.execution.dotnet.pdb │ │ └── xunit.execution.dotnet.xml │ ├── win8 │ │ ├── xunit.execution.dotnet.dll │ │ ├── xunit.execution.dotnet.pdb │ │ └── xunit.execution.dotnet.xml │ ├── wp8 │ │ ├── xunit.execution.dotnet.dll │ │ ├── xunit.execution.dotnet.pdb │ │ └── xunit.execution.dotnet.xml │ ├── wpa81 │ │ ├── xunit.execution.dotnet.dll │ │ ├── xunit.execution.dotnet.pdb │ │ └── xunit.execution.dotnet.xml │ └── xamarinios │ │ ├── xunit.execution.dotnet.dll │ │ ├── xunit.execution.dotnet.pdb │ │ └── xunit.execution.dotnet.xml └── xunit.extensibility.execution.2.1.0.nupkg └── xunit.runner.visualstudio.2.1.0 ├── build ├── _common │ ├── xunit.abstractions.dll │ ├── xunit.runner.utility.desktop.dll │ ├── xunit.runner.utility.dotnet.dll │ └── xunit.runner.visualstudio.testadapter.dll ├── monoandroid │ └── _._ ├── monotouch │ └── _._ ├── net20 │ └── xunit.runner.visualstudio.props ├── portable-net45+win8+wp8+wpa81 │ └── xunit.runner.visualstudio.props ├── uap10.0 │ ├── xunit.runner.visualstudio.props │ ├── xunit.runner.visualstudio.targets │ ├── xunit.runner.visualstudio.uwp.dll │ └── xunit.runner.visualstudio.uwp.pri ├── win8 │ └── _._ ├── win81 │ ├── xunit.runner.visualstudio.props │ ├── xunit.runner.visualstudio.targets │ ├── xunit.runner.visualstudio.win81.dll │ └── xunit.runner.visualstudio.win81.pri ├── wp8 │ └── _._ ├── wpa81 │ ├── xunit.runner.visualstudio.props │ ├── xunit.runner.visualstudio.targets │ ├── xunit.runner.visualstudio.wpa81.dll │ └── xunit.runner.visualstudio.wpa81.pri └── xamarinios │ └── _._ └── xunit.runner.visualstudio.2.1.0.nupkg /CustmParameterBindingUnitTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过以下特性集 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("CustmParameterBindingUnitTest")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("CustmParameterBindingUnitTest")] 13 | [assembly: AssemblyCopyright("Copyright © 2015")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | // 对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型, 19 | // 请将该类型上的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("53ba7baa-24fd-4a0e-affc-55ab43582658")] 24 | 25 | // 程序集的版本信息由以下四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, 33 | // 方法是按如下所示使用“*”: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/UnitTest1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.VisualStudio.TestTools.UnitTesting; 3 | using Xunit; 4 | using System.Threading.Tasks; 5 | using System.Net.Http; 6 | 7 | namespace CustmParameterBindingUnitTest 8 | { 9 | 10 | public class UnitTest1 11 | { 12 | [Fact] 13 | public async Task TestMethod1() 14 | { 15 | string url = "http://localhost:7114/api/product/PostRawContent"; 16 | 17 | string post = "Hello World"; 18 | 19 | var httpClient = new HttpClient(); 20 | var content = new StringContent(post); 21 | var response = await httpClient.PostAsync(url, content); 22 | 23 | 24 | string result = await response.Content.ReadAsStringAsync(); 25 | 26 | Xunit.Assert.Equal(result, "\"" + post + "\""); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/app.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/CustmParameterBindingUnitTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/CustmParameterBindingUnitTest.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/CustmParameterBindingUnitTest.dll.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/CustmParameterBindingUnitTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/CustmParameterBindingUnitTest.pdb -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/MvcWebApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/MvcWebApi.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/MvcWebApi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/MvcWebApi.pdb -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/System.Web.Http.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/System.Web.Mvc.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/System.Web.Optimization.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/xunit.abstractions.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/xunit.assert.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/xunit.assert.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/xunit.assert.pdb -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/xunit.core.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/xunit.core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/xunit.core.pdb -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/xunit.execution.desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/xunit.execution.desktop.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/xunit.runner.utility.desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/xunit.runner.utility.desktop.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/xunit.runner.visualstudio.testadapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/xunit.runner.visualstudio.testadapter.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/zh-Hans/System.Web.Http.WebHost.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/zh-Hans/System.Web.Http.WebHost.resources.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/zh-Hans/System.Web.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/zh-Hans/System.Web.Http.resources.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/zh-Hans/System.Web.Mvc.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/zh-Hans/System.Web.Mvc.resources.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/bin/Debug/zh-Hans/System.Web.Optimization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/bin/Debug/zh-Hans/System.Web.Optimization.resources.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/obj/Debug/CustmParameterBindingUnitTest.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/obj/Debug/CustmParameterBindingUnitTest.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/obj/Debug/CustmParameterBindingUnitTest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/obj/Debug/CustmParameterBindingUnitTest.dll -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/obj/Debug/CustmParameterBindingUnitTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/obj/Debug/CustmParameterBindingUnitTest.pdb -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/CustmParameterBindingUnitTest/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /CustmParameterBindingUnitTest/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /MvcWebApi.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2013 4 | VisualStudioVersion = 12.0.40629.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MvcWebApi", "MvcWebApi\MvcWebApi.csproj", "{A0871669-0182-414C-BE15-54A5FBB6FEBC}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CustmParameterBindingUnitTest", "CustmParameterBindingUnitTest\CustmParameterBindingUnitTest.csproj", "{322ACD25-C334-44CE-BCE9-47A77F2953B0}" 9 | EndProject 10 | Global 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | Debug|Any CPU = Debug|Any CPU 13 | Release|Any CPU = Release|Any CPU 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {A0871669-0182-414C-BE15-54A5FBB6FEBC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {A0871669-0182-414C-BE15-54A5FBB6FEBC}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {A0871669-0182-414C-BE15-54A5FBB6FEBC}.Release|Any CPU.ActiveCfg = Release|Any CPU 19 | {A0871669-0182-414C-BE15-54A5FBB6FEBC}.Release|Any CPU.Build.0 = Release|Any CPU 20 | {322ACD25-C334-44CE-BCE9-47A77F2953B0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {322ACD25-C334-44CE-BCE9-47A77F2953B0}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {322ACD25-C334-44CE-BCE9-47A77F2953B0}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 | {322ACD25-C334-44CE-BCE9-47A77F2953B0}.Release|Any CPU.Build.0 = Release|Any CPU 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | EndGlobal 29 | -------------------------------------------------------------------------------- /MvcWebApi.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi.v12.suo -------------------------------------------------------------------------------- /MvcWebApi/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Optimization; 3 | 4 | namespace MvcWebApi 5 | { 6 | public class BundleConfig 7 | { 8 | // 有关 Bundling 的详细信息,请访问 http://go.microsoft.com/fwlink/?LinkId=254725 9 | public static void RegisterBundles(BundleCollection bundles) 10 | { 11 | bundles.Add(new ScriptBundle("~/bundles/jquery").Include( 12 | "~/Scripts/jquery-{version}.js")); 13 | 14 | bundles.Add(new ScriptBundle("~/bundles/jqueryui").Include( 15 | "~/Scripts/jquery-ui-{version}.js")); 16 | 17 | bundles.Add(new ScriptBundle("~/bundles/jqueryval").Include( 18 | "~/Scripts/jquery.unobtrusive*", 19 | "~/Scripts/jquery.validate*")); 20 | 21 | // 使用要用于开发和学习的 Modernizr 的开发版本。然后,当你做好 22 | // 生产准备时,请使用 http://modernizr.com 上的生成工具来仅选择所需的测试。 23 | bundles.Add(new ScriptBundle("~/bundles/modernizr").Include( 24 | "~/Scripts/modernizr-*")); 25 | 26 | bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/site.css")); 27 | 28 | bundles.Add(new StyleBundle("~/Content/themes/base/css").Include( 29 | "~/Content/themes/base/jquery.ui.core.css", 30 | "~/Content/themes/base/jquery.ui.resizable.css", 31 | "~/Content/themes/base/jquery.ui.selectable.css", 32 | "~/Content/themes/base/jquery.ui.accordion.css", 33 | "~/Content/themes/base/jquery.ui.autocomplete.css", 34 | "~/Content/themes/base/jquery.ui.button.css", 35 | "~/Content/themes/base/jquery.ui.dialog.css", 36 | "~/Content/themes/base/jquery.ui.slider.css", 37 | "~/Content/themes/base/jquery.ui.tabs.css", 38 | "~/Content/themes/base/jquery.ui.datepicker.css", 39 | "~/Content/themes/base/jquery.ui.progressbar.css", 40 | "~/Content/themes/base/jquery.ui.theme.css")); 41 | } 42 | } 43 | } -------------------------------------------------------------------------------- /MvcWebApi/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- 1 | using System.Web; 2 | using System.Web.Mvc; 3 | 4 | namespace MvcWebApi 5 | { 6 | public class FilterConfig 7 | { 8 | public static void RegisterGlobalFilters(GlobalFilterCollection filters) 9 | { 10 | filters.Add(new HandleErrorAttribute()); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /MvcWebApi/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- 1 | using MvcWebApi.Controllers; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Web; 6 | using System.Web.Mvc; 7 | using System.Web.Routing; 8 | 9 | namespace MvcWebApi 10 | { 11 | public class RouteConfig 12 | { 13 | public static void RegisterRoutes(RouteCollection routes) 14 | { 15 | routes.IgnoreRoute("{resource}.axd/{*pathInfo}"); 16 | 17 | routes.MapRoute( 18 | name: "Default", 19 | url: "{controller}/{action}/{id}", 20 | defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional } 21 | ); 22 | 23 | 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /MvcWebApi/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- 1 | using MvcWebApi.Controllers; 2 | using System; 3 | using System.Collections.Generic; 4 | using System.Linq; 5 | using System.Web.Http; 6 | using System.Web.Routing; 7 | 8 | namespace MvcWebApi 9 | { 10 | public static class WebApiConfig 11 | { 12 | 13 | public static void Register(HttpConfiguration config) 14 | { 15 | config.Routes.MapHttpRoute( 16 | name: "DefaultApi", 17 | routeTemplate: "api/{controller}/{action}/{id}", 18 | defaults: new { id = RouteParameter.Optional } 19 | ); 20 | 21 | 22 | 23 | // 取消注释下面的代码行可对具有 IQueryable 或 IQueryable 返回类型的操作启用查询支持。 24 | // 若要避免处理意外查询或恶意查询,请使用 QueryableAttribute 上的验证设置来验证传入查询。 25 | // 有关详细信息,请访问 http://go.microsoft.com/fwlink/?LinkId=279712。 26 | //config.EnableQuerySupport(); 27 | 28 | // 若要在应用程序中禁用跟踪,请注释掉或删除以下代码行 29 | // 有关详细信息,请参阅: http://www.asp.net/web-api 30 | 31 | //var formatters = config.Formatters.Where(formatter => 32 | // formatter.SupportedMediaTypes.Where(media => 33 | // media.MediaType.ToString() == "application/xml" || media.MediaType.ToString() == "text/html").Count() > 0) 34 | // .ToList(); 35 | 36 | //foreach (var match in formatters) 37 | //{ 38 | // config.Formatters.Remove(match); 39 | //} 40 | 41 | 42 | 43 | 44 | } 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /MvcWebApi/Content/WebApiTestClient.styles.css: -------------------------------------------------------------------------------- 1 | #watc-panel { 2 | background: whitesmoke; 3 | padding: 10px; 4 | } 5 | 6 | .watc-container { 7 | font-family: monospace; 8 | } 9 | 10 | .watc-transmission { 11 | 12 | } 13 | 14 | .watc-container input { 15 | border: solid 1px #696969; 16 | font-family: monospace; 17 | padding: 3px; 18 | } 19 | 20 | a[data-cmd] { 21 | text-decoration: none; 22 | border: solid 1px #4848FF; 23 | color: #4848FF; 24 | display: inline-block; 25 | padding: 0 3px; 26 | } 27 | 28 | .watc-activator { 29 | position: fixed; 30 | bottom: 0; 31 | right: 0; 32 | padding: 5px 15px; 33 | display: inline-block; 34 | opacity: .8; 35 | text-decoration: none; 36 | background-color: gray; 37 | color: white; 38 | } 39 | 40 | 41 | .watc-properties { 42 | padding: 0 0 0 15px; 43 | } 44 | 45 | .watc-list-container>span:not(:last-child)::after, 46 | .watc-property:not(:last-child)::after, 47 | .watc-input-list>span:not(:last-child)::after { 48 | content: ", "; 49 | } 50 | 51 | 52 | 53 | #watc-panel li { 54 | list-style-type: none; 55 | 56 | } 57 | 58 | #watc-panel ul { 59 | margin: 0; 60 | } -------------------------------------------------------------------------------- /MvcWebApi/Controllers/HomeController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Net.Http; 5 | using System.Threading.Tasks; 6 | using System.Web; 7 | using System.Web.Mvc; 8 | 9 | namespace MvcWebApi.Controllers 10 | { 11 | 12 | public class HomeController : Controller 13 | { 14 | public string post = "Hello World"; 15 | public string result { get; set; } 16 | public ActionResult Index() 17 | { 18 | var client = new HttpClient(); 19 | var postcontent = new StringContent(post); 20 | var postUrl = "http://localhost:7114/api/product/PostRawContent"; 21 | 22 | var task = client.PostAsync(postUrl, postcontent).Result; 23 | GetContent(task.Content); 24 | return View(); 25 | } 26 | 27 | public async Task GetContent(HttpContent content) 28 | { 29 | string result = await content.ReadAsStringAsync(); 30 | this.result = result; 31 | var ss = "\"" + post + "\""; 32 | if(result=="\""+post+"\""){ 33 | 34 | } 35 | ViewBag.result = this.result; 36 | return result; 37 | } 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /MvcWebApi/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="MvcWebApi.WebApiApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /MvcWebApi/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 | using System.Web.SessionState; 10 | 11 | namespace MvcWebApi 12 | { 13 | // 注意: 有关启用 IIS6 或 IIS7 经典模式的说明, 14 | // 请访问 http://go.microsoft.com/?LinkId=9394801 15 | 16 | public class WebApiApplication : System.Web.HttpApplication 17 | { 18 | protected void Application_Start() 19 | { 20 | AreaRegistration.RegisterAllAreas(); 21 | 22 | WebApiConfig.Register(GlobalConfiguration.Configuration); 23 | FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters); 24 | RouteConfig.RegisterRoutes(RouteTable.Routes); 25 | BundleConfig.RegisterBundles(BundleTable.Bundles); 26 | } 27 | 28 | private const string _WebApiPrefix = "APi"; 29 | private static string _WebApiExecutionPath = String.Format("~/{0}", _WebApiPrefix); 30 | 31 | 32 | public static void Register(HttpConfiguration config) 33 | { 34 | config.Routes.MapHttpRoute( 35 | name: "DefaultApi", 36 | routeTemplate: String.Format("{0}/{controller}/{id}", _WebApiPrefix), 37 | defaults: new { id = RouteParameter.Optional } 38 | ); 39 | } 40 | 41 | protected void Session_Start() 42 | { 43 | HttpContext.Current.Session.Add("xpy0928","嗨-博客"); 44 | } 45 | 46 | protected void Application_PostAuthorizeRequest() 47 | { 48 | if (IsWebApiRequest()) 49 | { 50 | HttpContext.Current.SetSessionStateBehavior(SessionStateBehavior.Required); 51 | } 52 | } 53 | 54 | private bool IsWebApiRequest() 55 | { 56 | return HttpContext.Current.Request.AppRelativeCurrentExecutionFilePath.StartsWith(_WebApiExecutionPath); 57 | } 58 | } 59 | } -------------------------------------------------------------------------------- /MvcWebApi/Images/accent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/Images/accent.png -------------------------------------------------------------------------------- /MvcWebApi/Images/bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/Images/bullet.png -------------------------------------------------------------------------------- /MvcWebApi/Images/heroAccent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/Images/heroAccent.png -------------------------------------------------------------------------------- /MvcWebApi/Images/orderedList0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/Images/orderedList0.png -------------------------------------------------------------------------------- /MvcWebApi/Images/orderedList1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/Images/orderedList1.png -------------------------------------------------------------------------------- /MvcWebApi/Images/orderedList2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/Images/orderedList2.png -------------------------------------------------------------------------------- /MvcWebApi/Images/orderedList3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/Images/orderedList3.png -------------------------------------------------------------------------------- /MvcWebApi/Images/orderedList4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/Images/orderedList4.png -------------------------------------------------------------------------------- /MvcWebApi/Images/orderedList5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/Images/orderedList5.png -------------------------------------------------------------------------------- /MvcWebApi/Images/orderedList6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/Images/orderedList6.png -------------------------------------------------------------------------------- /MvcWebApi/Images/orderedList7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/Images/orderedList7.png -------------------------------------------------------------------------------- /MvcWebApi/Images/orderedList8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/Images/orderedList8.png -------------------------------------------------------------------------------- /MvcWebApi/Images/orderedList9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/Images/orderedList9.png -------------------------------------------------------------------------------- /MvcWebApi/Models/Product.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace MvcWebApi.Models 7 | { 8 | public class Product 9 | { 10 | public int Id { get; set; } 11 | public string Name { get; set; } 12 | public string Category { get; set; } 13 | public decimal Price { get; set; } 14 | } 15 | } -------------------------------------------------------------------------------- /MvcWebApi/Models/User.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | namespace MvcWebApi.Models 7 | { 8 | public class User 9 | { 10 | public string UserName { get; set; } 11 | 12 | public string UserPassword { get; set; } 13 | } 14 | } -------------------------------------------------------------------------------- /MvcWebApi/MvcWebApi.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | SpecificPage 10 | True 11 | False 12 | False 13 | False 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | True 23 | True 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /MvcWebApi/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的常规信息通过下列特性集 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("MvcWebApi")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("MvcWebApi")] 13 | [assembly: AssemblyCopyright("版权所有(C) 2015")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | // 对 COM 组件不可见。如果需要从 COM 访问此程序集中的某个类型, 19 | // 请针对该类型将 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("652446e7-1739-4c09-9298-24c6613748ee")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 内部版本号 30 | // 修订号 31 | // 32 | // 可以指定所有这些值,也可以使用“修订号”和“内部版本号”的默认值, 33 | // 方法是按如下所示使用“*”: 34 | [assembly: AssemblyVersion("1.0.0.0")] 35 | [assembly: AssemblyFileVersion("1.0.0.0")] 36 | -------------------------------------------------------------------------------- /MvcWebApi/Scripts/_references.js: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | /// 4 | /// 5 | /// 6 | /// 7 | -------------------------------------------------------------------------------- /MvcWebApi/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } 4 | 5 | 6 | 7 | 8 | 9 | 10 | 错误 11 | 12 | 13 |
14 |

错误。

15 |

处理你的请求时出错。

16 |
17 | 18 | -------------------------------------------------------------------------------- /MvcWebApi/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | @ViewBag.Title 8 | @Styles.Render("~/Content/css") 9 | @Scripts.Render("~/bundles/modernizr") 10 | 11 | 12 | 13 |
14 |
15 |
16 |

17 | ASP.NET Web API

18 |
19 |
20 | 26 |
27 |
28 |
29 | @RenderBody() 30 | 31 | @Scripts.Render("~/bundles/jquery") 32 | @RenderSection("scripts", required: false) 33 | 34 | 35 | -------------------------------------------------------------------------------- /MvcWebApi/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "~/Views/Shared/_Layout.cshtml"; 3 | } -------------------------------------------------------------------------------- /MvcWebApi/Web.Debug.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 17 | 18 | 29 | 30 | -------------------------------------------------------------------------------- /MvcWebApi/Web.Release.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 17 | 18 | 19 | 30 | 31 | -------------------------------------------------------------------------------- /MvcWebApi/bin/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/EntityFramework.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/Microsoft.Data.Edm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/Microsoft.Data.Edm.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/Microsoft.Data.OData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/Microsoft.Data.OData.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/Microsoft.Web.Mvc.FixedDisplayModes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/Microsoft.Web.Mvc.FixedDisplayModes.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/MvcWebApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/MvcWebApi.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/MvcWebApi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/MvcWebApi.pdb -------------------------------------------------------------------------------- /MvcWebApi/bin/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/System.Spatial.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/System.Spatial.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/System.Web.Helpers.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/System.Web.Http.OData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/System.Web.Http.OData.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/System.Web.Http.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/System.Web.Http.Tracing.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/System.Web.Http.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/System.Web.Mvc.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/System.Web.Optimization.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/System.Web.Providers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/System.Web.Providers.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/System.Web.Razor.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/System.Web.WebPages.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/WebApiTestClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/WebApiTestClient.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/WebGrease.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/de/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/de/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/de/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/de/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/de/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/de/System.Spatial.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/es/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/es/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/es/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/es/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/es/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/es/System.Spatial.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/fr/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/fr/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/fr/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/fr/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/fr/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/fr/System.Spatial.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/it/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/it/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/it/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/it/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/it/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/it/System.Spatial.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/ja/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/ja/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/ja/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/ja/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/ja/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/ja/System.Spatial.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/ko/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/ko/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/ko/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/ko/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/ko/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/ko/System.Spatial.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/ru/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/ru/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/ru/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/ru/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/ru/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/ru/System.Spatial.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hans/EntityFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hans/EntityFramework.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hans/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hans/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hans/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hans/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hans/System.Net.Http.Formatting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hans/System.Net.Http.Formatting.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hans/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hans/System.Spatial.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hans/System.Web.Helpers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hans/System.Web.Helpers.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hans/System.Web.Http.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hans/System.Web.Http.OData.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hans/System.Web.Http.Tracing.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hans/System.Web.Http.Tracing.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hans/System.Web.Http.WebHost.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hans/System.Web.Http.WebHost.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hans/System.Web.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hans/System.Web.Http.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hans/System.Web.Mvc.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hans/System.Web.Mvc.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hans/System.Web.Optimization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hans/System.Web.Optimization.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hans/System.Web.Providers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hans/System.Web.Providers.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hans/System.Web.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hans/System.Web.Razor.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hans/System.Web.WebPages.Deployment.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hans/System.Web.WebPages.Deployment.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hans/System.Web.WebPages.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hans/System.Web.WebPages.Razor.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hans/System.Web.WebPages.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hans/System.Web.WebPages.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hant/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hant/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hant/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hant/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/bin/zh-Hant/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/bin/zh-Hant/System.Spatial.resources.dll -------------------------------------------------------------------------------- /MvcWebApi/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/favicon.ico -------------------------------------------------------------------------------- /MvcWebApi/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /MvcWebApi/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /MvcWebApi/obj/Debug/MvcWebApi.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/obj/Debug/MvcWebApi.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /MvcWebApi/obj/Debug/MvcWebApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/obj/Debug/MvcWebApi.dll -------------------------------------------------------------------------------- /MvcWebApi/obj/Debug/MvcWebApi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/obj/Debug/MvcWebApi.pdb -------------------------------------------------------------------------------- /MvcWebApi/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /MvcWebApi/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /MvcWebApi/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/MvcWebApi/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/Content/App.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/Content/Web.config.transform: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/EntityFramework.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/EntityFramework.5.0.0/EntityFramework.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/lib/net40/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/EntityFramework.5.0.0/lib/net40/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/lib/net40/zh-Hans/EntityFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/EntityFramework.5.0.0/lib/net40/zh-Hans/EntityFramework.resources.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/lib/net45/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/EntityFramework.5.0.0/lib/net45/EntityFramework.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/lib/net45/zh-Hans/EntityFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/EntityFramework.5.0.0/lib/net45/zh-Hans/EntityFramework.resources.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/EntityFramework.PS3.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/EntityFramework.5.0.0/tools/EntityFramework.PS3.psd1 -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.Utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.Utility.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/EntityFramework.5.0.0/tools/EntityFramework.PowerShell.dll -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/EntityFramework.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/EntityFramework.5.0.0/tools/EntityFramework.psd1 -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/Redirect.VS11.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/Redirect.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/about_EntityFramework.help.txt: -------------------------------------------------------------------------------- 1 | TOPIC 2 | about_EntityFramework 3 | 4 | SHORT DESCRIPTION 5 | Provides information about Entity Framework commands. 6 | 7 | LONG DESCRIPTION 8 | This topic describes the Entity Framework commands. Entity Framework is 9 | Microsoft's recommended data access technology for new applications. 10 | 11 | 12 | The following Entity Framework cmdlets are included. 13 | 14 | Cmdlet Description 15 | ----------------- --------------------------------------------------- 16 | Enable-Migrations Enables Code First Migrations in a project. 17 | 18 | Add-Migration Scaffolds a migration script for any pending model 19 | changes. 20 | 21 | Update-Database Applies any pending migrations to the database. 22 | 23 | Get-Migrations Displays the migrations that have been applied to 24 | the target database. 25 | 26 | SEE ALSO 27 | Enable-Migrations 28 | Add-Migration 29 | Update-Database 30 | Get-Migrations 31 | -------------------------------------------------------------------------------- /packages/EntityFramework.5.0.0/tools/migrate.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/EntityFramework.5.0.0/tools/migrate.exe -------------------------------------------------------------------------------- /packages/EntityFramework.zh-Hans.5.0.0/EntityFramework.zh-Hans.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/EntityFramework.zh-Hans.5.0.0/EntityFramework.zh-Hans.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/EntityFramework.zh-Hans.5.0.0/lib/net40/zh-Hans/EntityFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/EntityFramework.zh-Hans.5.0.0/lib/net40/zh-Hans/EntityFramework.resources.dll -------------------------------------------------------------------------------- /packages/EntityFramework.zh-Hans.5.0.0/lib/net45/zh-Hans/EntityFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/EntityFramework.zh-Hans.5.0.0/lib/net45/zh-Hans/EntityFramework.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.4.0.30506.0/Microsoft.AspNet.Mvc.4.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Mvc.4.0.30506.0/Microsoft.AspNet.Mvc.4.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.4.0.30506.0/lib/net40/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Mvc.4.0.30506.0/lib/net40/System.Web.Mvc.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.4.0.30506.0/lib/net40/zh-Hans/System.Web.Mvc.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Mvc.4.0.30506.0/lib/net40/zh-Hans/System.Web.Mvc.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0/Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0/Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0/lib/net40/Microsoft.Web.Mvc.FixedDisplayModes.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Mvc.FixedDisplayModes.1.0.0/lib/net40/Microsoft.Web.Mvc.FixedDisplayModes.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0/Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0/Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0/lib/net40/zh-Hans/System.Web.Mvc.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Mvc.zh-Hans.4.0.30506.0/lib/net40/zh-Hans/System.Web.Mvc.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Providers.Core.1.2/Microsoft.AspNet.Providers.Core.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Providers.Core.1.2/Microsoft.AspNet.Providers.Core.1.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Providers.Core.1.2/lib/net40/System.Web.Providers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Providers.Core.1.2/lib/net40/System.Web.Providers.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Providers.Core.1.2/lib/net40/zh-Hans/System.Web.Providers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Providers.Core.1.2/lib/net40/zh-Hans/System.Web.Providers.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Providers.Core.zh-Hans.1.2/Microsoft.AspNet.Providers.Core.zh-Hans.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Providers.Core.zh-Hans.1.2/Microsoft.AspNet.Providers.Core.zh-Hans.1.2.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Providers.Core.zh-Hans.1.2/lib/net40/zh-Hans/System.Web.Providers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Providers.Core.zh-Hans.1.2/lib/net40/zh-Hans/System.Web.Providers.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Providers.LocalDB.1.1/Microsoft.AspNet.Providers.LocalDB.1.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Providers.LocalDB.1.1/Microsoft.AspNet.Providers.LocalDB.1.1.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.2.0.30506.0/Microsoft.AspNet.Razor.2.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Razor.2.0.30506.0/Microsoft.AspNet.Razor.2.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.2.0.30506.0/lib/net40/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Razor.2.0.30506.0/lib/net40/System.Web.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.2.0.30506.0/lib/net40/zh-Hans/System.Web.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Razor.2.0.30506.0/lib/net40/zh-Hans/System.Web.Razor.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0/Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0/Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Razor.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.Razor.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.0.0/Microsoft.AspNet.Web.Optimization.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Web.Optimization.1.0.0/Microsoft.AspNet.Web.Optimization.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.0.0/lib/net40/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Web.Optimization.1.0.0/lib/net40/System.Web.Optimization.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.1.0.0/lib/net40/zh-Hans/System.Web.Optimization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Web.Optimization.1.0.0/lib/net40/zh-Hans/System.Web.Optimization.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0/Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0/Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0/lib/net40/zh-Hans/System.Web.Optimization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.Web.Optimization.zh-Hans.1.0.0/lib/net40/zh-Hans/System.Web.Optimization.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.4.0.30506.0/Microsoft.AspNet.WebApi.4.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.4.0.30506.0/Microsoft.AspNet.WebApi.4.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.0.0/Microsoft.AspNet.WebApi.Client.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.Client.5.0.0/Microsoft.AspNet.WebApi.Client.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.0.0/lib/net45/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.Client.5.0.0/lib/net45/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.0.0/lib/net45/zh-Hans/System.Net.Http.Formatting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.Client.5.0.0/lib/net45/zh-Hans/System.Net.Http.Formatting.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.5.0.0/lib/portable-wp8+netcore45+net45/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.Client.5.0.0/lib/portable-wp8+netcore45+net45/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.zh-Hans.5.0.0/Microsoft.AspNet.WebApi.Client.zh-Hans.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.5.0.0/Microsoft.AspNet.WebApi.Client.zh-Hans.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Client.zh-Hans.5.0.0/lib/net45/zh-Hans/System.Net.Http.Formatting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.5.0.0/lib/net45/zh-Hans/System.Net.Http.Formatting.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.5.0.0/Microsoft.AspNet.WebApi.Core.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.Core.5.0.0/Microsoft.AspNet.WebApi.Core.5.0.0.nupkg -------------------------------------------------------------------------------- /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/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.Core.5.0.0/lib/net45/System.Web.Http.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.5.0.0/lib/net45/zh-Hans/System.Web.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.Core.5.0.0/lib/net45/zh-Hans/System.Web.Http.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.zh-Hans.5.0.0/Microsoft.AspNet.WebApi.Core.zh-Hans.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.5.0.0/Microsoft.AspNet.WebApi.Core.zh-Hans.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Core.zh-Hans.5.0.0/lib/net45/zh-Hans/System.Web.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.5.0.0/lib/net45/zh-Hans/System.Web.Http.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.OData.4.0.30506/Microsoft.AspNet.WebApi.OData.4.0.30506.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.OData.4.0.30506/Microsoft.AspNet.WebApi.OData.4.0.30506.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.OData.4.0.30506/lib/net40/System.Web.Http.OData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.OData.4.0.30506/lib/net40/System.Web.Http.OData.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.OData.4.0.30506/lib/net40/zh-Hans/System.Web.Http.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.OData.4.0.30506/lib/net40/zh-Hans/System.Web.Http.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.OData.zh-Hans.4.0.30506/Microsoft.AspNet.WebApi.OData.zh-Hans.4.0.30506.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.OData.zh-Hans.4.0.30506/Microsoft.AspNet.WebApi.OData.zh-Hans.4.0.30506.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.OData.zh-Hans.4.0.30506/lib/net40/zh-Hans/System.Web.Http.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.OData.zh-Hans.4.0.30506/lib/net40/zh-Hans/System.Web.Http.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Tracing.4.0.30506/Microsoft.AspNet.WebApi.Tracing.4.0.30506.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.Tracing.4.0.30506/Microsoft.AspNet.WebApi.Tracing.4.0.30506.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Tracing.4.0.30506/ReadMe.txt: -------------------------------------------------------------------------------- 1 | Microsoft ASP.NET Web API Tracing 2 | ================================= 3 | 4 | This package allows the ASP.NET Web API framework to trace to System.Diagnostics.Trace. 5 | 6 | To enable tracing in your application please add the following line of code 7 | to your startup code. 8 | 9 | If using C#, add the following line to WebApiConfig.cs (Global.asax.cs in an MVC 4 project): 10 | config.EnableSystemDiagnosticsTracing(); 11 | 12 | If using Visual Basic, add the following line to WebApiConfig.vb (Global.asax.vb in an MVC 4 project): 13 | config.EnableSystemDiagnosticsTracing() 14 | 15 | where 'config' is the HttpConfiguration instance for your application. 16 | 17 | For additional information on debugging and tracing in ASP.NET Web API, refer to: 18 | http://go.microsoft.com/fwlink/?LinkId=269874 19 | -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Tracing.4.0.30506/lib/net40/System.Web.Http.Tracing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.Tracing.4.0.30506/lib/net40/System.Web.Http.Tracing.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Tracing.4.0.30506/lib/net40/zh-Hans/System.Web.Http.Tracing.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.Tracing.4.0.30506/lib/net40/zh-Hans/System.Web.Http.Tracing.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Tracing.zh-Hans.4.0.30506/Microsoft.AspNet.WebApi.Tracing.zh-Hans.4.0.30506.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.Tracing.zh-Hans.4.0.30506/Microsoft.AspNet.WebApi.Tracing.zh-Hans.4.0.30506.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.Tracing.zh-Hans.4.0.30506/lib/net40/zh-Hans/System.Web.Http.Tracing.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.Tracing.zh-Hans.4.0.30506/lib/net40/zh-Hans/System.Web.Http.Tracing.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.5.0.0/Microsoft.AspNet.WebApi.WebHost.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.WebHost.5.0.0/Microsoft.AspNet.WebApi.WebHost.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.5.0.0/lib/net45/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.WebHost.5.0.0/lib/net45/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.5.0.0/lib/net45/zh-Hans/System.Web.Http.WebHost.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.WebHost.5.0.0/lib/net45/zh-Hans/System.Web.Http.WebHost.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.0.0/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.0.0/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.0.0/lib/net45/zh-Hans/System.Web.Http.WebHost.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.0.0/lib/net45/zh-Hans/System.Web.Http.WebHost.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/Microsoft.AspNet.WebPages.2.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebPages.2.0.30506.0/Microsoft.AspNet.WebPages.2.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.Helpers.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/System.Web.WebPages.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/zh-Hans/System.Web.Helpers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/zh-Hans/System.Web.Helpers.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.Deployment.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.Deployment.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.Razor.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebPages.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.Helpers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.Helpers.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.Deployment.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.Deployment.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.Razor.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.AspNet.WebPages.zh-Hans.2.0.30506.0/lib/net40/zh-Hans/System.Web.WebPages.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/Microsoft.Data.Edm.5.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/Microsoft.Data.Edm.5.2.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/net40/Microsoft.Data.Edm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/net40/Microsoft.Data.Edm.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/net40/de/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/net40/de/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/net40/es/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/net40/es/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/net40/fr/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/net40/fr/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/net40/it/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/net40/it/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/net40/ja/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/net40/ja/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/net40/ko/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/net40/ko/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/net40/ru/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/net40/ru/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/net40/zh-Hans/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/net40/zh-Hans/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/net40/zh-Hant/Microsoft.Data.Edm.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/net40/zh-Hant/Microsoft.Data.Edm.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/sl4/Microsoft.Data.Edm.SL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/sl4/Microsoft.Data.Edm.SL.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/sl4/de/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/sl4/de/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/sl4/es/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/sl4/es/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/sl4/fr/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/sl4/fr/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/sl4/it/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/sl4/it/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/sl4/ja/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/sl4/ja/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/sl4/ko/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/sl4/ko/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/sl4/ru/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/sl4/ru/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/sl4/zh-Hans/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/sl4/zh-Hans/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.Edm.5.2.0/lib/sl4/zh-Hant/Microsoft.Data.Edm.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.Edm.5.2.0/lib/sl4/zh-Hant/Microsoft.Data.Edm.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/Microsoft.Data.OData.5.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/Microsoft.Data.OData.5.2.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/net40/Microsoft.Data.OData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/net40/Microsoft.Data.OData.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/net40/de/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/net40/de/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/net40/es/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/net40/es/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/net40/fr/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/net40/fr/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/net40/it/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/net40/it/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/net40/ja/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/net40/ja/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/net40/ko/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/net40/ko/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/net40/ru/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/net40/ru/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/net40/zh-Hans/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/net40/zh-Hans/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/net40/zh-Hant/Microsoft.Data.OData.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/net40/zh-Hant/Microsoft.Data.OData.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/sl4/Microsoft.Data.OData.SL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/sl4/Microsoft.Data.OData.SL.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/sl4/de/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/sl4/de/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/sl4/es/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/sl4/es/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/sl4/fr/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/sl4/fr/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/sl4/it/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/sl4/it/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/sl4/ja/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/sl4/ja/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/sl4/ko/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/sl4/ko/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/sl4/ru/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/sl4/ru/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/sl4/zh-Hans/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/sl4/zh-Hans/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Data.OData.5.2.0/lib/sl4/zh-Hant/Microsoft.Data.OData.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Data.OData.5.2.0/lib/sl4/zh-Hant/Microsoft.Data.OData.SL.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Net.Http.2.0.20710.0/Microsoft.Net.Http.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.WebRequest.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/System.Net.Http.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.WebRequest.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.WebRequest.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Net.Http.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.2.0.20710.0/lib/net45/_._: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/Microsoft.Net.Http.zh-Hans.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/Microsoft.Net.Http.zh-Hans.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.WebRequest.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.WebRequest.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Net.Http.zh-Hans.2.0.20710.0/lib/net40/zh-Hans/System.Net.Http.resources.dll -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Ajax.2.0.30506.0/Microsoft.jQuery.Unobtrusive.Ajax.2.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.jQuery.Unobtrusive.Ajax.2.0.30506.0/Microsoft.jQuery.Unobtrusive.Ajax.2.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.jQuery.Unobtrusive.Validation.2.0.30506.0/Microsoft.jQuery.Unobtrusive.Validation.2.0.30506.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Microsoft.jQuery.Unobtrusive.Validation.2.0.30506.0/Microsoft.jQuery.Unobtrusive.Validation.2.0.30506.0.nupkg -------------------------------------------------------------------------------- /packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg -------------------------------------------------------------------------------- /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.4.5.11/Newtonsoft.Json.4.5.11.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Newtonsoft.Json.4.5.11/Newtonsoft.Json.4.5.11.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Newtonsoft.Json.4.5.11/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Newtonsoft.Json.4.5.11/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Newtonsoft.Json.4.5.11/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/portable-net40%2Bsl4%2Bwp7%2Bwin8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Newtonsoft.Json.4.5.11/lib/portable-net40%2Bsl4%2Bwp7%2Bwin8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Newtonsoft.Json.4.5.11/lib/portable-net40+sl4+wp7+win8/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/sl3-wp/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Newtonsoft.Json.4.5.11/lib/sl3-wp/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/sl4-windowsphone71/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Newtonsoft.Json.4.5.11/lib/sl4-windowsphone71/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/sl4/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Newtonsoft.Json.4.5.11/lib/sl4/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.4.5.11/lib/winrt45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/Newtonsoft.Json.4.5.11/lib/winrt45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/System.Spatial.5.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/System.Spatial.5.2.0.nupkg -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/net40/System.Spatial.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/net40/System.Spatial.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/net40/de/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/net40/de/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/net40/es/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/net40/es/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/net40/fr/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/net40/fr/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/net40/it/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/net40/it/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/net40/ja/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/net40/ja/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/net40/ko/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/net40/ko/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/net40/ru/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/net40/ru/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/net40/zh-Hans/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/net40/zh-Hans/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/net40/zh-Hant/System.Spatial.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/net40/zh-Hant/System.Spatial.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/sl4/System.Spatial.SL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/sl4/System.Spatial.SL.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/sl4/de/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/sl4/de/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/sl4/es/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/sl4/es/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/sl4/fr/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/sl4/fr/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/sl4/it/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/sl4/it/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/sl4/ja/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/sl4/ja/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/sl4/ko/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/sl4/ko/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/sl4/ru/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/sl4/ru/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/sl4/zh-Hans/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/sl4/zh-Hans/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/System.Spatial.5.2.0/lib/sl4/zh-Hant/System.Spatial.SL.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/System.Spatial.5.2.0/lib/sl4/zh-Hant/System.Spatial.SL.resources.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.3.0/WebGrease.1.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/WebGrease.1.3.0/WebGrease.1.3.0.nupkg -------------------------------------------------------------------------------- /packages/WebGrease.1.3.0/lib/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/WebGrease.1.3.0/lib/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.3.0/lib/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/WebGrease.1.3.0/lib/WebGrease.dll -------------------------------------------------------------------------------- /packages/WebGrease.1.3.0/tools/WG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/WebGrease.1.3.0/tools/WG.exe -------------------------------------------------------------------------------- /packages/jQuery.1.8.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.8.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.8.2/jQuery.1.8.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.1.8.2/jQuery.1.8.2.nupkg -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Accordion 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Accordion#theming 10 | */ 11 | .ui-accordion .ui-accordion-header { display: block; cursor: pointer; position: relative; margin-top: 2px; padding: .5em .5em .5em .7em; zoom: 1; } 12 | .ui-accordion .ui-accordion-icons { padding-left: 2.2em; } 13 | .ui-accordion .ui-accordion-noicons { padding-left: .7em; } 14 | .ui-accordion .ui-accordion-icons .ui-accordion-icons { padding-left: 2.2em; } 15 | .ui-accordion .ui-accordion-header .ui-accordion-header-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 16 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; overflow: auto; zoom: 1; } 17 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Theming 10 | */ 11 | @import "jquery.ui.base.css"; 12 | @import "jquery.ui.theme.css"; 13 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Autocomplete 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Autocomplete#theming 10 | */ 11 | .ui-autocomplete { 12 | position: absolute; 13 | top: 0; /* #8656 */ 14 | cursor: default; 15 | } 16 | 17 | /* workarounds */ 18 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ 19 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Theming 10 | */ 11 | @import url("jquery.ui.core.css"); 12 | 13 | @import url("jquery.ui.accordion.css"); 14 | @import url("jquery.ui.autocomplete.css"); 15 | @import url("jquery.ui.button.css"); 16 | @import url("jquery.ui.datepicker.css"); 17 | @import url("jquery.ui.dialog.css"); 18 | @import url("jquery.ui.menu.css"); 19 | @import url("jquery.ui.progressbar.css"); 20 | @import url("jquery.ui.resizable.css"); 21 | @import url("jquery.ui.selectable.css"); 22 | @import url("jquery.ui.slider.css"); 23 | @import url("jquery.ui.spinner.css"); 24 | @import url("jquery.ui.tabs.css"); 25 | @import url("jquery.ui.tooltip.css"); 26 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.core.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI CSS Framework 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Theming/API 10 | */ 11 | 12 | /* Layout helpers 13 | ----------------------------------*/ 14 | .ui-helper-hidden { display: none; } 15 | .ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); } 16 | .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; } 17 | .ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; } 18 | .ui-helper-clearfix:after { clear: both; } 19 | .ui-helper-clearfix { zoom: 1; } 20 | .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); } 21 | 22 | 23 | /* Interaction Cues 24 | ----------------------------------*/ 25 | .ui-state-disabled { cursor: default !important; } 26 | 27 | 28 | /* Icons 29 | ----------------------------------*/ 30 | 31 | /* states and images */ 32 | .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; } 33 | 34 | 35 | /* Misc visuals 36 | ----------------------------------*/ 37 | 38 | /* Overlays */ 39 | .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } 40 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.dialog.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Dialog 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Dialog#theming 10 | */ 11 | .ui-dialog { position: absolute; padding: .2em; width: 300px; overflow: hidden; } 12 | .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; } 13 | .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; } 14 | .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; } 15 | .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; } 16 | .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; } 17 | .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; } 18 | .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; } 19 | .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; } 20 | .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; } 21 | .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; } 22 | .ui-draggable .ui-dialog-titlebar { cursor: move; } 23 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.menu.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Menu 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Menu#theming 10 | */ 11 | .ui-menu { list-style:none; padding: 2px; margin: 0; display:block; outline: none; } 12 | .ui-menu .ui-menu { margin-top: -3px; position: absolute; } 13 | .ui-menu .ui-menu-item { margin: 0; padding: 0; zoom: 1; width: 100%; } 14 | .ui-menu .ui-menu-divider { margin: 5px -2px 5px -2px; height: 0; font-size: 0; line-height: 0; border-width: 1px 0 0 0; } 15 | .ui-menu .ui-menu-item a { text-decoration: none; display: block; padding: 2px .4em; line-height: 1.5; zoom: 1; font-weight: normal; } 16 | .ui-menu .ui-menu-item a.ui-state-focus, 17 | .ui-menu .ui-menu-item a.ui-state-active { font-weight: normal; margin: -1px; } 18 | 19 | .ui-menu .ui-state-disabled { font-weight: normal; margin: .4em 0 .2em; line-height: 1.5; } 20 | .ui-menu .ui-state-disabled a { cursor: default; } 21 | 22 | /* icon support */ 23 | .ui-menu-icons { position: relative; } 24 | .ui-menu-icons .ui-menu-item a { position: relative; padding-left: 2em; } 25 | 26 | /* left-aligned */ 27 | .ui-menu .ui-icon { position: absolute; top: .2em; left: .2em; } 28 | 29 | /* right-aligned */ 30 | .ui-menu .ui-menu-icon { position: static; float: right; } 31 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Progressbar 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Progressbar#theming 10 | */ 11 | .ui-progressbar { height:2em; text-align: left; overflow: hidden; } 12 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Resizable 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Resizable#theming 10 | */ 11 | .ui-resizable { position: relative;} 12 | .ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; } 13 | .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } 14 | .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; } 15 | .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; } 16 | .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; } 17 | .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; } 18 | .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; } 19 | .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; } 20 | .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; } 21 | .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Selectable 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Selectable#theming 10 | */ 11 | .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; } 12 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Slider 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Slider#theming 10 | */ 11 | .ui-slider { position: relative; text-align: left; } 12 | .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; } 13 | .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; } 14 | 15 | .ui-slider-horizontal { height: .8em; } 16 | .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; } 17 | .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } 18 | .ui-slider-horizontal .ui-slider-range-min { left: 0; } 19 | .ui-slider-horizontal .ui-slider-range-max { right: 0; } 20 | 21 | .ui-slider-vertical { width: .8em; height: 100px; } 22 | .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; } 23 | .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; } 24 | .ui-slider-vertical .ui-slider-range-min { bottom: 0; } 25 | .ui-slider-vertical .ui-slider-range-max { top: 0; } -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.spinner.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Spinner 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Spinner#theming 10 | */ 11 | .ui-spinner { position:relative; display: inline-block; overflow: hidden; padding: 0; vertical-align: middle; } 12 | .ui-spinner-input { border: none; background: none; padding: 0; margin: .2em 0; vertical-align: middle; margin-left: .4em; margin-right: 22px; } 13 | .ui-spinner-button { width: 16px; height: 50%; font-size: .5em; padding: 0; margin: 0; text-align: center; position: absolute; cursor: default; display: block; overflow: hidden; right: 0; } 14 | .ui-spinner a.ui-spinner-button { border-top: none; border-bottom: none; border-right: none; } /* more specificity required here to overide default borders */ 15 | .ui-spinner .ui-icon { position: absolute; margin-top: -8px; top: 50%; left: 0; } /* vertical centre icon */ 16 | .ui-spinner-up { top: 0; } 17 | .ui-spinner-down { bottom: 0; } 18 | 19 | /* TR overrides */ 20 | .ui-spinner .ui-icon-triangle-1-s { 21 | /* need to fix icons sprite */ 22 | background-position:-65px -16px; 23 | } 24 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.tabs.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tabs 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://docs.jquery.com/UI/Tabs#theming 10 | */ 11 | .ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ 12 | .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; } 13 | .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 0; margin: 1px .2em 0 0; border-bottom: 0; padding: 0; white-space: nowrap; } 14 | .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; } 15 | .ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: -1px; padding-bottom: 1px; } 16 | .ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a { cursor: text; } 17 | .ui-tabs .ui-tabs-nav li a, .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */ 18 | .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; } 19 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/jquery.ui.tooltip.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Tooltip 1.9.1 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | */ 9 | .ui-tooltip { 10 | padding: 8px; 11 | position: absolute; 12 | z-index: 9999; 13 | max-width: 300px; 14 | -webkit-box-shadow: 0 0 5px #aaa; 15 | box-shadow: 0 0 5px #aaa; 16 | } 17 | /* Fades and background-images don't work well together in IE6, drop the image */ 18 | * html .ui-tooltip { 19 | background-image: none; 20 | } 21 | body .ui-tooltip { border-width: 2px; } 22 | -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.accordion.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.accordion.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin-top:2px;padding:.5em .5em .5em .7em;zoom:1}.ui-accordion .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-noicons{padding-left:.7em}.ui-accordion .ui-accordion-icons .ui-accordion-icons{padding-left:2.2em}.ui-accordion .ui-accordion-header .ui-accordion-header-icon{position:absolute;left:.5em;top:50%;margin-top:-8px}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto;zoom:1} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.autocomplete.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.autocomplete.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-autocomplete{position:absolute;top:0;cursor:default}* html .ui-autocomplete{width:1px} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.button.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.button.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-button{display:inline-block;position:relative;padding:0;margin-right:.1em;cursor:pointer;text-align:center;zoom:1;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2.2em}button.ui-button-icon-only{width:2.4em}.ui-button-icons-only{width:3.4em}button.ui-button-icons-only{width:3.7em}.ui-button .ui-button-text{display:block;line-height:1.4}.ui-button-text-only .ui-button-text{padding:.4em 1em}.ui-button-icon-only .ui-button-text,.ui-button-icons-only .ui-button-text{padding:.4em;text-indent:-9999999px}.ui-button-text-icon-primary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 1em .4em 2.1em}.ui-button-text-icon-secondary .ui-button-text,.ui-button-text-icons .ui-button-text{padding:.4em 2.1em .4em 1em}.ui-button-text-icons .ui-button-text{padding-left:2.1em;padding-right:2.1em}input.ui-button{padding:.4em 1em}.ui-button-icon-only .ui-icon,.ui-button-text-icon-primary .ui-icon,.ui-button-text-icon-secondary .ui-icon,.ui-button-text-icons .ui-icon,.ui-button-icons-only .ui-icon{position:absolute;top:50%;margin-top:-8px}.ui-button-icon-only .ui-icon{left:50%;margin-left:-8px}.ui-button-text-icon-primary .ui-button-icon-primary,.ui-button-text-icons .ui-button-icon-primary,.ui-button-icons-only .ui-button-icon-primary{left:.5em}.ui-button-text-icon-secondary .ui-button-icon-secondary,.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-button-text-icons .ui-button-icon-secondary,.ui-button-icons-only .ui-button-icon-secondary{right:.5em}.ui-buttonset{margin-right:7px}.ui-buttonset .ui-button{margin-left:0;margin-right:-.3em}button.ui-button::-moz-focus-inner{border:0;padding:0} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.core.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.core.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute!important;clip:rect(1px);clip:rect(1px,1px,1px,1px)}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{zoom:1}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:absolute;top:0;left:0;width:100%;height:100%} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.dialog.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.dialog.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-dialog{position:absolute;padding:.2em;width:300px;overflow:hidden}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 16px .1em 0}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:19px;margin:-10px 0 0 0;padding:1px;height:18px}.ui-dialog .ui-dialog-titlebar-close span{display:block;margin:1px}.ui-dialog .ui-dialog-titlebar-close:hover,.ui-dialog .ui-dialog-titlebar-close:focus{padding:0}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto;zoom:1}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin:.5em 0 0 0;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-se{width:14px;height:14px;right:3px;bottom:3px}.ui-draggable .ui-dialog-titlebar{cursor:move} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.menu.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.menu.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-menu{list-style:none;padding:2px;margin:0;display:block;outline:none}.ui-menu .ui-menu{margin-top:-3px;position:absolute}.ui-menu .ui-menu-item{margin:0;padding:0;zoom:1;width:100%}.ui-menu .ui-menu-divider{margin:5px -2px 5px -2px;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:2px .4em;line-height:1.5;zoom:1;font-weight:normal}.ui-menu .ui-menu-item a.ui-state-focus,.ui-menu .ui-menu-item a.ui-state-active{font-weight:normal;margin:-1px}.ui-menu .ui-state-disabled{font-weight:normal;margin:.4em 0 .2em;line-height:1.5}.ui-menu .ui-state-disabled a{cursor:default}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item a{position:relative;padding-left:2em}.ui-menu .ui-icon{position:absolute;top:.2em;left:.2em}.ui-menu .ui-menu-icon{position:static;float:right} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.progressbar.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.progressbar.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.resizable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.resizable.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.selectable.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.selectable.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.slider.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.slider.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.spinner.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.spinner.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;padding:0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:22px}.ui-spinner-button{width:16px;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top:none;border-bottom:none;border-right:none}.ui-spinner .ui-icon{position:absolute;margin-top:-8px;top:50%;left:0}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-spinner .ui-icon-triangle-1-s{background-position:-65px -16px} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.tabs.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.tabs.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-tabs{position:relative;padding:.2em;zoom:1}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav li a{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active a,.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-tabs-loading a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/Content/Content/themes/base/minified/jquery.ui.tooltip.min.css: -------------------------------------------------------------------------------- 1 | /*! jQuery UI - v1.9.1 - 2012-10-25 2 | * http://jqueryui.com 3 | * Includes: jquery.ui.tooltip.css 4 | * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */ 5 | .ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}* html .ui-tooltip{background-image:none}body .ui-tooltip{border-width:2px} -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.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 $juiFileNameRegEx $juiFileName -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.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 $juiFileNameRegEx -------------------------------------------------------------------------------- /packages/jQuery.UI.Combined.1.9.2/jQuery.UI.Combined.1.9.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.UI.Combined.1.9.2/jQuery.UI.Combined.1.9.2.nupkg -------------------------------------------------------------------------------- /packages/jQuery.Validation.1.10.0/jQuery.Validation.1.10.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/jQuery.Validation.1.10.0/jQuery.Validation.1.10.0.nupkg -------------------------------------------------------------------------------- /packages/knockoutjs.2.2.0/knockoutjs.2.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/knockoutjs.2.2.0/knockoutjs.2.2.0.nupkg -------------------------------------------------------------------------------- /packages/matthewcv.WebApiTestClient.1.2.0/Content/Content/WebApiTestClient.styles.css: -------------------------------------------------------------------------------- 1 | #watc-panel { 2 | background: whitesmoke; 3 | padding: 10px; 4 | } 5 | 6 | .watc-container { 7 | font-family: monospace; 8 | } 9 | 10 | .watc-transmission { 11 | 12 | } 13 | 14 | .watc-container input { 15 | border: solid 1px #696969; 16 | font-family: monospace; 17 | padding: 3px; 18 | } 19 | 20 | a[data-cmd] { 21 | text-decoration: none; 22 | border: solid 1px #4848FF; 23 | color: #4848FF; 24 | display: inline-block; 25 | padding: 0 3px; 26 | } 27 | 28 | .watc-activator { 29 | position: fixed; 30 | bottom: 0; 31 | right: 0; 32 | padding: 5px 15px; 33 | display: inline-block; 34 | opacity: .8; 35 | text-decoration: none; 36 | background-color: gray; 37 | color: white; 38 | } 39 | 40 | 41 | .watc-properties { 42 | padding: 0 0 0 15px; 43 | } 44 | 45 | .watc-list-container>span:not(:last-child)::after, 46 | .watc-property:not(:last-child)::after, 47 | .watc-input-list>span:not(:last-child)::after { 48 | content: ", "; 49 | } 50 | 51 | 52 | 53 | #watc-panel li { 54 | list-style-type: none; 55 | 56 | } 57 | 58 | #watc-panel ul { 59 | margin: 0; 60 | } -------------------------------------------------------------------------------- /packages/matthewcv.WebApiTestClient.1.2.0/lib/net45/WebApiTestClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/matthewcv.WebApiTestClient.1.2.0/lib/net45/WebApiTestClient.dll -------------------------------------------------------------------------------- /packages/matthewcv.WebApiTestClient.1.2.0/matthewcv.WebApiTestClient.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/matthewcv.WebApiTestClient.1.2.0/matthewcv.WebApiTestClient.1.2.0.nupkg -------------------------------------------------------------------------------- /packages/repositories.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /packages/xunit.2.1.0/xunit.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.2.1.0/xunit.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/xunit.abstractions.2.0.0/lib/net35/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.abstractions.2.0.0/lib/net35/xunit.abstractions.dll -------------------------------------------------------------------------------- /packages/xunit.abstractions.2.0.0/lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.abstractions.2.0.0/lib/portable-net45+win+wpa81+wp80+monotouch+monoandroid+Xamarin.iOS/xunit.abstractions.dll -------------------------------------------------------------------------------- /packages/xunit.abstractions.2.0.0/xunit.abstractions.2.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.abstractions.2.0.0/xunit.abstractions.2.0.0.nupkg -------------------------------------------------------------------------------- /packages/xunit.assert.2.1.0/lib/dotnet/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.assert.2.1.0/lib/dotnet/xunit.assert.dll -------------------------------------------------------------------------------- /packages/xunit.assert.2.1.0/lib/dotnet/xunit.assert.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.assert.2.1.0/lib/dotnet/xunit.assert.pdb -------------------------------------------------------------------------------- /packages/xunit.assert.2.1.0/lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.assert.2.1.0/lib/portable-net45+win8+wp8+wpa81/xunit.assert.dll -------------------------------------------------------------------------------- /packages/xunit.assert.2.1.0/lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.assert.2.1.0/lib/portable-net45+win8+wp8+wpa81/xunit.assert.pdb -------------------------------------------------------------------------------- /packages/xunit.assert.2.1.0/xunit.assert.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.assert.2.1.0/xunit.assert.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/xunit.core.2.1.0/build/_desktop/xunit.execution.desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.core.2.1.0/build/_desktop/xunit.execution.desktop.dll -------------------------------------------------------------------------------- /packages/xunit.core.2.1.0/build/dnx451/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.core.2.1.0/build/dnx451/_._ -------------------------------------------------------------------------------- /packages/xunit.core.2.1.0/build/monoandroid/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.core.2.1.0/build/monoandroid/_._ -------------------------------------------------------------------------------- /packages/xunit.core.2.1.0/build/monotouch/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.core.2.1.0/build/monotouch/_._ -------------------------------------------------------------------------------- /packages/xunit.core.2.1.0/build/net45/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.core.2.1.0/build/net45/_._ -------------------------------------------------------------------------------- /packages/xunit.core.2.1.0/build/portable-net45+win8+wp8+wpa81/xunit.core.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | xunit.execution.desktop.dll 6 | PreserveNewest 7 | False 8 | 9 | 10 | -------------------------------------------------------------------------------- /packages/xunit.core.2.1.0/build/win8/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.core.2.1.0/build/win8/_._ -------------------------------------------------------------------------------- /packages/xunit.core.2.1.0/build/win81/xunit.core.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | xunit.execution.desktop.dll 6 | PreserveNewest 7 | False 8 | 9 | 10 | -------------------------------------------------------------------------------- /packages/xunit.core.2.1.0/build/wp8/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.core.2.1.0/build/wp8/_._ -------------------------------------------------------------------------------- /packages/xunit.core.2.1.0/build/wpa81/xunit.core.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | xunit.execution.desktop.dll 6 | PreserveNewest 7 | False 8 | 9 | 10 | -------------------------------------------------------------------------------- /packages/xunit.core.2.1.0/build/xamarinios/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.core.2.1.0/build/xamarinios/_._ -------------------------------------------------------------------------------- /packages/xunit.core.2.1.0/xunit.core.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.core.2.1.0/xunit.core.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/xunit.extensibility.core.2.1.0/lib/dotnet/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.core.2.1.0/lib/dotnet/xunit.core.dll -------------------------------------------------------------------------------- /packages/xunit.extensibility.core.2.1.0/lib/dotnet/xunit.core.dll.tdnet: -------------------------------------------------------------------------------- 1 | 2 | xUnit.net {0}.{1}.{2} build {3} 3 | xunit.runner.tdnet.dll 4 | Xunit.Runner.TdNet.TdNetRunner 5 | -------------------------------------------------------------------------------- /packages/xunit.extensibility.core.2.1.0/lib/dotnet/xunit.core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.core.2.1.0/lib/dotnet/xunit.core.pdb -------------------------------------------------------------------------------- /packages/xunit.extensibility.core.2.1.0/lib/dotnet/xunit.runner.tdnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.core.2.1.0/lib/dotnet/xunit.runner.tdnet.dll -------------------------------------------------------------------------------- /packages/xunit.extensibility.core.2.1.0/lib/dotnet/xunit.runner.utility.desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.core.2.1.0/lib/dotnet/xunit.runner.utility.desktop.dll -------------------------------------------------------------------------------- /packages/xunit.extensibility.core.2.1.0/lib/portable-net45+win8+wp8+wpa81/xunit.core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.core.2.1.0/lib/portable-net45+win8+wp8+wpa81/xunit.core.dll -------------------------------------------------------------------------------- /packages/xunit.extensibility.core.2.1.0/lib/portable-net45+win8+wp8+wpa81/xunit.core.dll.tdnet: -------------------------------------------------------------------------------- 1 | 2 | xUnit.net {0}.{1}.{2} build {3} 3 | xunit.runner.tdnet.dll 4 | Xunit.Runner.TdNet.TdNetRunner 5 | -------------------------------------------------------------------------------- /packages/xunit.extensibility.core.2.1.0/lib/portable-net45+win8+wp8+wpa81/xunit.core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.core.2.1.0/lib/portable-net45+win8+wp8+wpa81/xunit.core.pdb -------------------------------------------------------------------------------- /packages/xunit.extensibility.core.2.1.0/lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.core.2.1.0/lib/portable-net45+win8+wp8+wpa81/xunit.runner.tdnet.dll -------------------------------------------------------------------------------- /packages/xunit.extensibility.core.2.1.0/lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.core.2.1.0/lib/portable-net45+win8+wp8+wpa81/xunit.runner.utility.desktop.dll -------------------------------------------------------------------------------- /packages/xunit.extensibility.core.2.1.0/xunit.extensibility.core.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.core.2.1.0/xunit.extensibility.core.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/dnx451/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/dnx451/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/dnx451/xunit.execution.dotnet.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/dnx451/xunit.execution.dotnet.pdb -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/dotnet/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/dotnet/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/dotnet/xunit.execution.dotnet.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/dotnet/xunit.execution.dotnet.pdb -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/monoandroid/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/monoandroid/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/monoandroid/xunit.execution.dotnet.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/monoandroid/xunit.execution.dotnet.pdb -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/monotouch/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/monotouch/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/monotouch/xunit.execution.dotnet.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/monotouch/xunit.execution.dotnet.pdb -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/net45/xunit.execution.desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/net45/xunit.execution.desktop.dll -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/net45/xunit.execution.desktop.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/net45/xunit.execution.desktop.pdb -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/portable-net45+win8+wp8+wpa81/xunit.execution.dotnet.pdb -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/win8/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/win8/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/win8/xunit.execution.dotnet.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/win8/xunit.execution.dotnet.pdb -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/wp8/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/wp8/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/wp8/xunit.execution.dotnet.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/wp8/xunit.execution.dotnet.pdb -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/wpa81/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/wpa81/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/wpa81/xunit.execution.dotnet.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/wpa81/xunit.execution.dotnet.pdb -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/xamarinios/xunit.execution.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/xamarinios/xunit.execution.dotnet.dll -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/lib/xamarinios/xunit.execution.dotnet.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/lib/xamarinios/xunit.execution.dotnet.pdb -------------------------------------------------------------------------------- /packages/xunit.extensibility.execution.2.1.0/xunit.extensibility.execution.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.extensibility.execution.2.1.0/xunit.extensibility.execution.2.1.0.nupkg -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/_common/xunit.abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.runner.visualstudio.2.1.0/build/_common/xunit.abstractions.dll -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/_common/xunit.runner.utility.desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.runner.visualstudio.2.1.0/build/_common/xunit.runner.utility.desktop.dll -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/_common/xunit.runner.utility.dotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.runner.visualstudio.2.1.0/build/_common/xunit.runner.utility.dotnet.dll -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/_common/xunit.runner.visualstudio.testadapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.runner.visualstudio.2.1.0/build/_common/xunit.runner.visualstudio.testadapter.dll -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/monoandroid/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.runner.visualstudio.2.1.0/build/monoandroid/_._ -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/monotouch/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.runner.visualstudio.2.1.0/build/monotouch/_._ -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/net20/xunit.runner.visualstudio.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | xunit.runner.visualstudio.testadapter.dll 6 | PreserveNewest 7 | False 8 | 9 | 10 | xunit.runner.utility.desktop.dll 11 | PreserveNewest 12 | False 13 | 14 | 15 | xunit.abstractions.dll 16 | PreserveNewest 17 | False 18 | 19 | 20 | -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/portable-net45+win8+wp8+wpa81/xunit.runner.visualstudio.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | xunit.runner.visualstudio.testadapter.dll 6 | PreserveNewest 7 | False 8 | 9 | 10 | xunit.runner.utility.desktop.dll 11 | PreserveNewest 12 | False 13 | 14 | 15 | -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/uap10.0/xunit.runner.visualstudio.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | xunit.runner.visualstudio.testadapter.dll 6 | PreserveNewest 7 | False 8 | 9 | 10 | xunit.runner.utility.desktop.dll 11 | PreserveNewest 12 | False 13 | 14 | 15 | -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/uap10.0/xunit.runner.visualstudio.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | xunit.runner.visualstudio.uwp.dll 7 | 8 | 9 | xunit.runner.visualstudio.uwp.pri 10 | 11 | 12 | xunit.runner.utility.dotnet.dll 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/uap10.0/xunit.runner.visualstudio.uwp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.runner.visualstudio.2.1.0/build/uap10.0/xunit.runner.visualstudio.uwp.dll -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/uap10.0/xunit.runner.visualstudio.uwp.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.runner.visualstudio.2.1.0/build/uap10.0/xunit.runner.visualstudio.uwp.pri -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/win8/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.runner.visualstudio.2.1.0/build/win8/_._ -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/win81/xunit.runner.visualstudio.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | xunit.runner.visualstudio.testadapter.dll 6 | PreserveNewest 7 | False 8 | 9 | 10 | xunit.runner.utility.desktop.dll 11 | PreserveNewest 12 | False 13 | 14 | 15 | -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/win81/xunit.runner.visualstudio.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | xunit.runner.visualstudio.win81.dll 7 | 8 | 9 | xunit.runner.visualstudio.win81.pri 10 | 11 | 12 | xunit.runner.utility.dotnet.dll 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/win81/xunit.runner.visualstudio.win81.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.runner.visualstudio.2.1.0/build/win81/xunit.runner.visualstudio.win81.dll -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/win81/xunit.runner.visualstudio.win81.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.runner.visualstudio.2.1.0/build/win81/xunit.runner.visualstudio.win81.pri -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/wp8/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.runner.visualstudio.2.1.0/build/wp8/_._ -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/wpa81/xunit.runner.visualstudio.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | xunit.runner.visualstudio.testadapter.dll 6 | PreserveNewest 7 | False 8 | 9 | 10 | xunit.runner.utility.desktop.dll 11 | PreserveNewest 12 | False 13 | 14 | 15 | -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/wpa81/xunit.runner.visualstudio.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | xunit.runner.visualstudio.wpa81.dll 7 | 8 | 9 | xunit.runner.visualstudio.wpa81.pri 10 | 11 | 12 | xunit.runner.utility.dotnet.dll 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/wpa81/xunit.runner.visualstudio.wpa81.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.runner.visualstudio.2.1.0/build/wpa81/xunit.runner.visualstudio.wpa81.dll -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/wpa81/xunit.runner.visualstudio.wpa81.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.runner.visualstudio.2.1.0/build/wpa81/xunit.runner.visualstudio.wpa81.pri -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/build/xamarinios/_._: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.runner.visualstudio.2.1.0/build/xamarinios/_._ -------------------------------------------------------------------------------- /packages/xunit.runner.visualstudio.2.1.0/xunit.runner.visualstudio.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangpengxpy/WebApiAuthentication/5d367b035f8953b03fcfe95f7e3be7892699ae62/packages/xunit.runner.visualstudio.2.1.0/xunit.runner.visualstudio.2.1.0.nupkg --------------------------------------------------------------------------------