├── .gitignore ├── README.md ├── WiFiLocation ├── .gitignore ├── app-release.apk ├── app │ ├── .gitignore │ ├── build.gradle │ ├── libs │ │ └── gson-2.6.2.jar │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── lavender │ │ │ └── wifilocation │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── lavender │ │ │ │ └── wifilocation │ │ │ │ ├── Common.java │ │ │ │ ├── GetCoordService.java │ │ │ │ ├── GetLocationService.java │ │ │ │ ├── GetRSSIService.java │ │ │ │ ├── GetRssiActivity.java │ │ │ │ ├── GetStepLengthActivity.java │ │ │ │ ├── HttpConnect.java │ │ │ │ ├── Main2Activity.java │ │ │ │ ├── PedometerSettings.java │ │ │ │ ├── SensorTestActivity.java │ │ │ │ ├── StepDisplayer.java │ │ │ │ └── WifiRssi.java │ │ └── res │ │ │ ├── HttpConnect.java │ │ │ ├── drawable-v21 │ │ │ ├── ic_menu_camera.xml │ │ │ ├── ic_menu_gallery.xml │ │ │ ├── ic_menu_manage.xml │ │ │ ├── ic_menu_send.xml │ │ │ ├── ic_menu_share.xml │ │ │ └── ic_menu_slideshow.xml │ │ │ ├── drawable │ │ │ └── side_nav_bar.xml │ │ │ ├── layout │ │ │ ├── activity_get_rssi.xml │ │ │ ├── activity_get_step_length.xml │ │ │ ├── activity_main2.xml │ │ │ └── activity_sensor_test.xml │ │ │ ├── menu │ │ │ ├── activity_main2_drawer.xml │ │ │ └── main2.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── drawables.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── lavender │ │ └── wifilocation │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── WiFiLocationServer ├── TestResults │ └── 80f3462e-ebbb-4737-ac33-f56172df05be │ │ └── lavender_DESKTOP-9J1PPV0 2017-05-05 16_33_46.coverage ├── WiFiLocationServer.sln ├── WiFiLocationServer.测试 │ ├── App.config │ ├── Controllers │ │ ├── HomeControllerTest.cs │ │ └── ValuesControllerTest.cs │ ├── LocationTest.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── WiFiLocationServer.测试.csproj │ ├── obj │ │ └── Debug │ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── packages.config ├── WiFiLocationServer │ ├── App_Data │ │ └── App_Start │ │ │ ├── BundleConfig.cs │ │ │ ├── FilterConfig.cs │ │ │ ├── RouteConfig.cs │ │ │ └── WebApiConfig.cs │ ├── ApplicationInsights.config │ ├── Areas │ │ └── HelpPage │ │ │ ├── ApiDescriptionExtensions.cs │ │ │ ├── App_Start │ │ │ └── HelpPageConfig.cs │ │ │ ├── Controllers │ │ │ └── HelpController.cs │ │ │ ├── HelpPage.css │ │ │ ├── HelpPageAreaRegistration.cs │ │ │ ├── HelpPageConfigurationExtensions.cs │ │ │ ├── ModelDescriptions │ │ │ ├── CollectionModelDescription.cs │ │ │ ├── ComplexTypeModelDescription.cs │ │ │ ├── DictionaryModelDescription.cs │ │ │ ├── EnumTypeModelDescription.cs │ │ │ ├── EnumValueDescription.cs │ │ │ ├── IModelDocumentationProvider.cs │ │ │ ├── KeyValuePairModelDescription.cs │ │ │ ├── ModelDescription.cs │ │ │ ├── ModelDescriptionGenerator.cs │ │ │ ├── ModelNameAttribute.cs │ │ │ ├── ModelNameHelper.cs │ │ │ ├── ParameterAnnotation.cs │ │ │ ├── ParameterDescription.cs │ │ │ └── SimpleTypeModelDescription.cs │ │ │ ├── Models │ │ │ └── HelpPageApiModel.cs │ │ │ ├── SampleGeneration │ │ │ ├── HelpPageSampleGenerator.cs │ │ │ ├── HelpPageSampleKey.cs │ │ │ ├── ImageSample.cs │ │ │ ├── InvalidSample.cs │ │ │ ├── ObjectGenerator.cs │ │ │ ├── SampleDirection.cs │ │ │ └── TextSample.cs │ │ │ ├── Views │ │ │ ├── Help │ │ │ │ ├── Api.cshtml │ │ │ │ ├── DisplayTemplates │ │ │ │ │ ├── ApiGroup.cshtml │ │ │ │ │ ├── CollectionModelDescription.cshtml │ │ │ │ │ ├── ComplexTypeModelDescription.cshtml │ │ │ │ │ ├── DictionaryModelDescription.cshtml │ │ │ │ │ ├── EnumTypeModelDescription.cshtml │ │ │ │ │ ├── HelpPageApiModel.cshtml │ │ │ │ │ ├── ImageSample.cshtml │ │ │ │ │ ├── InvalidSample.cshtml │ │ │ │ │ ├── KeyValuePairModelDescription.cshtml │ │ │ │ │ ├── ModelDescriptionLink.cshtml │ │ │ │ │ ├── Parameters.cshtml │ │ │ │ │ ├── Samples.cshtml │ │ │ │ │ ├── SimpleTypeModelDescription.cshtml │ │ │ │ │ └── TextSample.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── ResourceModel.cshtml │ │ │ ├── Shared │ │ │ │ └── _Layout.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ │ └── XmlDocumentationProvider.cs │ ├── Content │ │ ├── Site.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── Controllers │ │ ├── DataTestController.cs │ │ ├── FingerprintController.cs │ │ ├── HomeController.cs │ │ ├── LocationController.cs │ │ ├── LocationLogController.cs │ │ ├── LoginController.cs │ │ ├── MobileModelController.cs │ │ └── RoomController.cs │ ├── DB │ │ ├── CommandInfo.cs │ │ ├── DbHelperSQL.cs │ │ ├── data_test.cs │ │ ├── fingerprint.cs │ │ ├── location_log.cs │ │ ├── login.cs │ │ ├── mobile_model.cs │ │ ├── room.cs │ │ └── rssi.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models │ │ ├── Fingerprint.cs │ │ ├── Location.cs │ │ ├── Login.cs │ │ ├── Room.cs │ │ ├── Rssi.cs │ │ ├── data_test.cs │ │ ├── location_log.cs │ │ └── mobile_model.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── PublishProfiles │ │ │ └── FolderProfile.pubxml │ ├── Scripts │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── echarts.common.min.js │ │ ├── jquery-1.10.2.intellisense.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── location │ │ │ ├── coord.js │ │ │ ├── location.js │ │ │ └── room.js │ │ ├── modernizr-2.6.2.js │ │ ├── respond.js │ │ └── respond.min.js │ ├── Views │ │ ├── Home │ │ │ ├── CoordDataShow.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── LocationShow.cshtml │ │ │ ├── RoomShow.cshtml │ │ │ └── login.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── WiFiLocationServer.csproj.user │ ├── favicon.ico │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ ├── bg.jpg │ │ └── bg2.jpg │ └── packages.config └── packages │ ├── Antlr.3.4.1.9004 │ ├── Antlr.3.4.1.9004.nupkg │ └── lib │ │ ├── Antlr3.Runtime.dll │ │ └── Antlr3.Runtime.pdb │ ├── Microsoft.ApplicationInsights.2.2.0 │ ├── Microsoft.ApplicationInsights.2.2.0.nupkg │ └── lib │ │ ├── net40 │ │ ├── Microsoft.ApplicationInsights.XML │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── net45 │ │ ├── Microsoft.ApplicationInsights.XML │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── net46 │ │ ├── Microsoft.ApplicationInsights.XML │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── netstandard1.5 │ │ ├── Microsoft.ApplicationInsights.XML │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── portable-win81%2Bwpa81 │ │ └── Microsoft.ApplicationInsights.dll │ │ ├── uap10.0 │ │ └── Microsoft.ApplicationInsights.dll │ │ └── wp8 │ │ └── Microsoft.ApplicationInsights.dll │ ├── Microsoft.ApplicationInsights.Agent.Intercept.2.0.6 │ ├── Microsoft.ApplicationInsights.Agent.Intercept.2.0.6.nupkg │ └── lib │ │ ├── net40 │ │ └── Microsoft.AI.Agent.Intercept.dll │ │ └── net45 │ │ └── Microsoft.AI.Agent.Intercept.dll │ ├── Microsoft.ApplicationInsights.DependencyCollector.2.2.0 │ ├── Microsoft.ApplicationInsights.DependencyCollector.2.2.0.nupkg │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.AI.DependencyCollector.XML │ │ └── Microsoft.AI.DependencyCollector.dll │ │ └── net45 │ │ ├── Microsoft.AI.DependencyCollector.XML │ │ └── Microsoft.AI.DependencyCollector.dll │ ├── Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0 │ ├── Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0.nupkg │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ └── Microsoft.AI.PerfCounterCollector.dll │ │ └── net45 │ │ └── Microsoft.AI.PerfCounterCollector.dll │ ├── Microsoft.ApplicationInsights.Web.2.2.0 │ ├── Microsoft.ApplicationInsights.Web.2.2.0.nupkg │ ├── content │ │ ├── net40 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ ├── ApplicationInsights.config.transform │ │ │ ├── ApplicationInsights.config.uninstall.xdt │ │ │ ├── web.config.install.xdt │ │ │ └── web.config.uninstall.xdt │ │ └── net45 │ │ │ ├── ApplicationInsights.config.install.xdt │ │ │ ├── ApplicationInsights.config.transform │ │ │ ├── ApplicationInsights.config.uninstall.xdt │ │ │ ├── web.config.install.xdt │ │ │ └── web.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.AI.Web.XML │ │ └── Microsoft.AI.Web.dll │ │ └── net45 │ │ ├── Microsoft.AI.Web.XML │ │ └── Microsoft.AI.Web.dll │ ├── Microsoft.ApplicationInsights.WindowsServer.2.2.0 │ ├── Microsoft.ApplicationInsights.WindowsServer.2.2.0.nupkg │ ├── Tools │ │ └── install.ps1 │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.AI.WindowsServer.XML │ │ └── Microsoft.AI.WindowsServer.dll │ │ └── net45 │ │ ├── Microsoft.AI.WindowsServer.XML │ │ └── Microsoft.AI.WindowsServer.dll │ ├── Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0 │ ├── Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0.nupkg │ ├── content │ │ ├── ApplicationInsights.config.install.xdt │ │ ├── ApplicationInsights.config.transform │ │ └── ApplicationInsights.config.uninstall.xdt │ └── lib │ │ ├── net40 │ │ ├── Microsoft.AI.ServerTelemetryChannel.XML │ │ └── Microsoft.AI.ServerTelemetryChannel.dll │ │ └── net45 │ │ ├── Microsoft.AI.ServerTelemetryChannel.XML │ │ └── Microsoft.AI.ServerTelemetryChannel.dll │ ├── Microsoft.AspNet.Mvc.5.2.3 │ ├── Content │ │ ├── Web.config.install.xdt │ │ └── Web.config.uninstall.xdt │ ├── Microsoft.AspNet.Mvc.5.2.3.nupkg │ └── lib │ │ └── net45 │ │ ├── System.Web.Mvc.dll │ │ ├── System.Web.Mvc.xml │ │ └── zh-Hans │ │ ├── System.Web.Mvc.resources.dll │ │ └── System.Web.Mvc.xml │ ├── Microsoft.AspNet.Mvc.zh-Hans.5.2.3 │ ├── Microsoft.AspNet.Mvc.zh-Hans.5.2.3.nupkg │ └── lib │ │ └── net45 │ │ └── zh-Hans │ │ ├── System.Web.Mvc.resources.dll │ │ └── System.Web.Mvc.xml │ ├── Microsoft.AspNet.Razor.3.2.3 │ ├── Microsoft.AspNet.Razor.3.2.3.nupkg │ └── lib │ │ └── net45 │ │ ├── System.Web.Razor.dll │ │ ├── System.Web.Razor.xml │ │ └── zh-Hans │ │ ├── System.Web.Razor.resources.dll │ │ └── system.web.razor.xml │ ├── Microsoft.AspNet.Razor.zh-Hans.3.2.3 │ ├── Microsoft.AspNet.Razor.zh-Hans.3.2.3.nupkg │ └── lib │ │ └── net45 │ │ └── zh-Hans │ │ ├── System.Web.Razor.resources.dll │ │ └── system.web.razor.xml │ ├── Microsoft.AspNet.Web.Optimization.1.1.3 │ ├── Microsoft.AspNet.Web.Optimization.1.1.3.nupkg │ └── lib │ │ └── net40 │ │ ├── System.Web.Optimization.dll │ │ ├── system.web.optimization.xml │ │ └── zh-Hans │ │ └── System.Web.Optimization.resources.dll │ ├── Microsoft.AspNet.Web.Optimization.zh-Hans.1.1.3 │ ├── Microsoft.AspNet.Web.Optimization.zh-Hans.1.1.3.nupkg │ └── lib │ │ └── net40 │ │ └── zh-Hans │ │ └── System.Web.Optimization.resources.dll │ ├── Microsoft.AspNet.WebApi.5.2.3 │ └── Microsoft.AspNet.WebApi.5.2.3.nupkg │ ├── Microsoft.AspNet.WebApi.Client.5.2.3 │ ├── Microsoft.AspNet.WebApi.Client.5.2.3.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%2Bnetcore45%2Bnet45%2Bwp81%2Bwpa81 │ │ ├── System.Net.Http.Formatting.dll │ │ └── System.Net.Http.Formatting.xml │ ├── Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3 │ ├── Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3.nupkg │ └── lib │ │ └── net45 │ │ └── zh-Hans │ │ ├── System.Net.Http.Formatting.resources.dll │ │ └── System.Net.Http.Formatting.xml │ ├── Microsoft.AspNet.WebApi.Core.5.2.3 │ ├── Content │ │ └── web.config.transform │ ├── Microsoft.AspNet.WebApi.Core.5.2.3.nupkg │ └── 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.2.3 │ ├── Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3.nupkg │ └── lib │ │ └── net45 │ │ └── zh-Hans │ │ ├── System.Web.Http.resources.dll │ │ └── System.Web.Http.xml │ ├── Microsoft.AspNet.WebApi.HelpPage.5.2.3 │ ├── Content │ │ └── Areas │ │ │ └── HelpPage │ │ │ ├── ApiDescriptionExtensions.cs.pp │ │ │ ├── App_Start │ │ │ └── HelpPageConfig.cs.pp │ │ │ ├── Controllers │ │ │ └── HelpController.cs.pp │ │ │ ├── HelpPage.css.pp │ │ │ ├── HelpPageAreaRegistration.cs.pp │ │ │ ├── HelpPageConfigurationExtensions.cs.pp │ │ │ ├── ModelDescriptions │ │ │ ├── CollectionModelDescription.cs.pp │ │ │ ├── ComplexTypeModelDescription.cs.pp │ │ │ ├── DictionaryModelDescription.cs.pp │ │ │ ├── EnumTypeModelDescription.cs.pp │ │ │ ├── EnumValueDescription.cs.pp │ │ │ ├── IModelDocumentationProvider.cs.pp │ │ │ ├── KeyValuePairModelDescription.cs.pp │ │ │ ├── ModelDescription.cs.pp │ │ │ ├── ModelDescriptionGenerator.cs.pp │ │ │ ├── ModelNameAttribute.cs.pp │ │ │ ├── ModelNameHelper.cs.pp │ │ │ ├── ParameterAnnotation.cs.pp │ │ │ ├── ParameterDescription.cs.pp │ │ │ └── SimpleTypeModelDescription.cs.pp │ │ │ ├── Models │ │ │ └── HelpPageApiModel.cs.pp │ │ │ ├── SampleGeneration │ │ │ ├── HelpPageSampleGenerator.cs.pp │ │ │ ├── HelpPageSampleKey.cs.pp │ │ │ ├── ImageSample.cs.pp │ │ │ ├── InvalidSample.cs.pp │ │ │ ├── ObjectGenerator.cs.pp │ │ │ ├── SampleDirection.cs.pp │ │ │ └── TextSample.cs.pp │ │ │ ├── Views │ │ │ ├── Help │ │ │ │ ├── Api.cshtml.pp │ │ │ │ ├── DisplayTemplates │ │ │ │ │ ├── ApiGroup.cshtml.pp │ │ │ │ │ ├── CollectionModelDescription.cshtml.pp │ │ │ │ │ ├── ComplexTypeModelDescription.cshtml.pp │ │ │ │ │ ├── DictionaryModelDescription.cshtml.pp │ │ │ │ │ ├── EnumTypeModelDescription.cshtml.pp │ │ │ │ │ ├── HelpPageApiModel.cshtml.pp │ │ │ │ │ ├── ImageSample.cshtml.pp │ │ │ │ │ ├── InvalidSample.cshtml.pp │ │ │ │ │ ├── KeyValuePairModelDescription.cshtml.pp │ │ │ │ │ ├── ModelDescriptionLink.cshtml.pp │ │ │ │ │ ├── Parameters.cshtml.pp │ │ │ │ │ ├── Samples.cshtml.pp │ │ │ │ │ ├── SimpleTypeModelDescription.cshtml.pp │ │ │ │ │ └── TextSample.cshtml.pp │ │ │ │ ├── Index.cshtml.pp │ │ │ │ └── ResourceModel.cshtml.pp │ │ │ ├── Shared │ │ │ │ └── _Layout.cshtml.pp │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml.pp │ │ │ └── XmlDocumentationProvider.cs.pp │ └── Microsoft.AspNet.WebApi.HelpPage.5.2.3.nupkg │ ├── Microsoft.AspNet.WebApi.WebHost.5.2.3 │ ├── Microsoft.AspNet.WebApi.WebHost.5.2.3.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.2.3 │ ├── Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3.nupkg │ └── lib │ │ └── net45 │ │ └── zh-Hans │ │ ├── System.Web.Http.WebHost.resources.dll │ │ └── System.Web.Http.WebHost.xml │ ├── Microsoft.AspNet.WebPages.3.2.3 │ ├── Content │ │ ├── Web.config.install.xdt │ │ └── Web.config.uninstall.xdt │ ├── Microsoft.AspNet.WebPages.3.2.3.nupkg │ └── lib │ │ └── net45 │ │ ├── System.Web.Helpers.dll │ │ ├── System.Web.Helpers.xml │ │ ├── System.Web.WebPages.Deployment.dll │ │ ├── System.Web.WebPages.Deployment.xml │ │ ├── System.Web.WebPages.Razor.dll │ │ ├── System.Web.WebPages.Razor.xml │ │ ├── System.Web.WebPages.dll │ │ ├── System.Web.WebPages.xml │ │ └── 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.3.2.3 │ ├── Microsoft.AspNet.WebPages.zh-Hans.3.2.3.nupkg │ └── lib │ │ └── net45 │ │ └── 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.CodeDom.Providers.DotNetCompilerPlatform.1.0.3 │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3.nupkg │ ├── build │ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props │ ├── content │ │ ├── web.config.install.xdt │ │ └── web.config.uninstall.xdt │ ├── lib │ │ └── net45 │ │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll │ │ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml │ └── tools │ │ ├── install.ps1 │ │ └── uninstall.ps1 │ ├── Microsoft.Net.Compilers.1.3.2 │ ├── Microsoft.Net.Compilers.1.3.2.nupkg │ ├── ThirdPartyNotices.rtf │ ├── build │ │ └── Microsoft.Net.Compilers.props │ └── tools │ │ ├── Microsoft.Build.Tasks.CodeAnalysis.dll │ │ ├── Microsoft.CSharp.Core.targets │ │ ├── Microsoft.CodeAnalysis.CSharp.Scripting.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.Scripting.dll │ │ ├── Microsoft.CodeAnalysis.VisualBasic.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.DiaSymReader.Native.amd64.dll │ │ ├── Microsoft.DiaSymReader.Native.x86.dll │ │ ├── Microsoft.VisualBasic.Core.targets │ │ ├── System.AppContext.dll │ │ ├── System.Collections.Immutable.dll │ │ ├── System.Diagnostics.StackTrace.dll │ │ ├── System.IO.FileSystem.Primitives.dll │ │ ├── System.IO.FileSystem.dll │ │ ├── System.Reflection.Metadata.dll │ │ ├── VBCSCompiler.exe │ │ ├── VBCSCompiler.exe.config │ │ ├── csc.exe │ │ ├── csc.exe.config │ │ ├── csc.rsp │ │ ├── csi.exe │ │ ├── csi.rsp │ │ ├── vbc.exe │ │ ├── vbc.exe.config │ │ └── vbc.rsp │ ├── Microsoft.Web.Infrastructure.1.0.0.0 │ ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg │ ├── lib │ │ └── net40 │ │ │ └── Microsoft.Web.Infrastructure.dll │ └── tools │ │ ├── Install.ps1 │ │ ├── Uninstall.ps1 │ │ ├── VS.psd1 │ │ └── VS.psm1 │ ├── 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.6.0.4 │ ├── Newtonsoft.Json.6.0.4.nupkg │ ├── lib │ │ ├── net20 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net35 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net40 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── net45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── netcore45 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ ├── portable-net40%2Bsl5%2Bwp80%2Bwin8%2Bwpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ │ └── portable-net45%2Bwp80%2Bwin8%2Bwpa81 │ │ │ ├── Newtonsoft.Json.dll │ │ │ └── Newtonsoft.Json.xml │ └── tools │ │ └── install.ps1 │ ├── Respond.1.2.0 │ ├── Respond.1.2.0.nupkg │ └── content │ │ └── Scripts │ │ ├── respond.js │ │ └── respond.min.js │ ├── WebGrease.1.5.2 │ ├── WebGrease.1.5.2.nupkg │ ├── lib │ │ └── WebGrease.dll │ └── tools │ │ └── WG.exe │ ├── bootstrap.3.0.0 │ ├── bootstrap.3.0.0.nupkg │ └── content │ │ ├── Content │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ │ ├── Scripts │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ │ └── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── jQuery.1.10.2 │ ├── Content │ └── Scripts │ │ ├── jquery-1.10.2-vsdoc.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ └── jquery-1.10.2.min.map │ ├── Tools │ ├── common.ps1 │ ├── install.ps1 │ ├── jquery-1.10.2.intellisense.js │ └── uninstall.ps1 │ └── jQuery.1.10.2.nupkg └── image ├── collection.png ├── location.png └── log.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/README.md -------------------------------------------------------------------------------- /WiFiLocation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/.gitignore -------------------------------------------------------------------------------- /WiFiLocation/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app-release.apk -------------------------------------------------------------------------------- /WiFiLocation/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /WiFiLocation/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/build.gradle -------------------------------------------------------------------------------- /WiFiLocation/app/libs/gson-2.6.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/libs/gson-2.6.2.jar -------------------------------------------------------------------------------- /WiFiLocation/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/proguard-rules.pro -------------------------------------------------------------------------------- /WiFiLocation/app/src/androidTest/java/com/example/lavender/wifilocation/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/androidTest/java/com/example/lavender/wifilocation/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/Common.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/Common.java -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/GetCoordService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/GetCoordService.java -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/GetLocationService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/GetLocationService.java -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/GetRSSIService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/GetRSSIService.java -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/GetRssiActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/GetRssiActivity.java -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/GetStepLengthActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/GetStepLengthActivity.java -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/HttpConnect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/HttpConnect.java -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/Main2Activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/Main2Activity.java -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/PedometerSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/PedometerSettings.java -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/SensorTestActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/SensorTestActivity.java -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/StepDisplayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/StepDisplayer.java -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/WifiRssi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/java/com/example/lavender/wifilocation/WifiRssi.java -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/HttpConnect.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by lavender on 2017/3/20. 3 | */ 4 | 5 | public class HttpConnect { 6 | } 7 | -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/drawable-v21/ic_menu_camera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/drawable-v21/ic_menu_camera.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/drawable-v21/ic_menu_gallery.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/drawable-v21/ic_menu_gallery.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/drawable-v21/ic_menu_manage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/drawable-v21/ic_menu_manage.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/drawable-v21/ic_menu_send.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/drawable-v21/ic_menu_send.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/drawable-v21/ic_menu_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/drawable-v21/ic_menu_share.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/drawable-v21/ic_menu_slideshow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/drawable-v21/ic_menu_slideshow.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/drawable/side_nav_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/drawable/side_nav_bar.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/layout/activity_get_rssi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/layout/activity_get_rssi.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/layout/activity_get_step_length.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/layout/activity_get_step_length.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/layout/activity_main2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/layout/activity_main2.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/layout/activity_sensor_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/layout/activity_sensor_test.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/menu/activity_main2_drawer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/menu/activity_main2_drawer.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/menu/main2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/menu/main2.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/values/drawables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/values/drawables.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /WiFiLocation/app/src/test/java/com/example/lavender/wifilocation/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/app/src/test/java/com/example/lavender/wifilocation/ExampleUnitTest.java -------------------------------------------------------------------------------- /WiFiLocation/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/build.gradle -------------------------------------------------------------------------------- /WiFiLocation/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/gradle.properties -------------------------------------------------------------------------------- /WiFiLocation/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /WiFiLocation/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /WiFiLocation/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/gradlew -------------------------------------------------------------------------------- /WiFiLocation/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocation/gradlew.bat -------------------------------------------------------------------------------- /WiFiLocation/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /WiFiLocationServer/TestResults/80f3462e-ebbb-4737-ac33-f56172df05be/lavender_DESKTOP-9J1PPV0 2017-05-05 16_33_46.coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/TestResults/80f3462e-ebbb-4737-ac33-f56172df05be/lavender_DESKTOP-9J1PPV0 2017-05-05 16_33_46.coverage -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer.sln -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer.测试/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer.测试/App.config -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer.测试/Controllers/HomeControllerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer.测试/Controllers/HomeControllerTest.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer.测试/Controllers/ValuesControllerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer.测试/Controllers/ValuesControllerTest.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer.测试/LocationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer.测试/LocationTest.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer.测试/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer.测试/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer.测试/WiFiLocationServer.测试.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer.测试/WiFiLocationServer.测试.csproj -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer.测试/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer.测试/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer.测试/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer.测试/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer.测试/packages.config -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/App_Data/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/App_Data/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/App_Data/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/App_Data/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/App_Data/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/App_Data/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/App_Data/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/App_Data/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/ApplicationInsights.config -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ApiDescriptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ApiDescriptionExtensions.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/App_Start/HelpPageConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/App_Start/HelpPageConfig.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Controllers/HelpController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Controllers/HelpController.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/HelpPage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/HelpPage.css -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/HelpPageAreaRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/HelpPageAreaRegistration.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/HelpPageConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/HelpPageConfigurationExtensions.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/ModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/ModelDescription.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Models/HelpPageApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Models/HelpPageApiModel.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/SampleGeneration/ImageSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/SampleGeneration/ImageSample.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/SampleGeneration/InvalidSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/SampleGeneration/InvalidSample.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/SampleGeneration/SampleDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/SampleGeneration/SampleDirection.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/SampleGeneration/TextSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/SampleGeneration/TextSample.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/Api.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/Api.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/Index.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/ResourceModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Help/ResourceModel.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/Web.config -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/XmlDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Areas/HelpPage/XmlDocumentationProvider.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Content/Site.css -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Content/bootstrap.css -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Content/bootstrap.min.css -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Controllers/DataTestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Controllers/DataTestController.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Controllers/FingerprintController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Controllers/FingerprintController.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Controllers/HomeController.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Controllers/LocationController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Controllers/LocationController.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Controllers/LocationLogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Controllers/LocationLogController.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Controllers/LoginController.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Controllers/MobileModelController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Controllers/MobileModelController.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Controllers/RoomController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Controllers/RoomController.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/DB/CommandInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/DB/CommandInfo.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/DB/DbHelperSQL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/DB/DbHelperSQL.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/DB/data_test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/DB/data_test.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/DB/fingerprint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/DB/fingerprint.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/DB/location_log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/DB/location_log.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/DB/login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/DB/login.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/DB/mobile_model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/DB/mobile_model.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/DB/room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/DB/room.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/DB/rssi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/DB/rssi.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Global.asax -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Global.asax.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Models/Fingerprint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Models/Fingerprint.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Models/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Models/Location.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Models/Login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Models/Login.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Models/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Models/Room.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Models/Rssi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Models/Rssi.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Models/data_test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Models/data_test.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Models/location_log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Models/location_log.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Models/mobile_model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Models/mobile_model.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Scripts/bootstrap.js -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Scripts/echarts.common.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Scripts/echarts.common.min.js -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Scripts/location/coord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Scripts/location/coord.js -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Scripts/location/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Scripts/location/location.js -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Scripts/location/room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Scripts/location/room.js -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Scripts/respond.js -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Scripts/respond.min.js -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Views/Home/CoordDataShow.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Views/Home/CoordDataShow.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Views/Home/LocationShow.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Views/Home/LocationShow.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Views/Home/RoomShow.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Views/Home/RoomShow.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Views/Home/login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Views/Home/login.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Views/Web.config -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Web.Debug.config -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Web.Release.config -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/Web.config -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/WiFiLocationServer.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/WiFiLocationServer.csproj.user -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/favicon.ico -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/images/bg.jpg -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/images/bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/images/bg2.jpg -------------------------------------------------------------------------------- /WiFiLocationServer/WiFiLocationServer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/WiFiLocationServer/packages.config -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Antlr.3.4.1.9004/Antlr.3.4.1.9004.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Antlr.3.4.1.9004/Antlr.3.4.1.9004.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Antlr.3.4.1.9004/lib/Antlr3.Runtime.pdb -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/Microsoft.ApplicationInsights.2.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/Microsoft.ApplicationInsights.2.2.0.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/net40/Microsoft.ApplicationInsights.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/net40/Microsoft.ApplicationInsights.XML -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/net40/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/net40/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/net45/Microsoft.ApplicationInsights.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/net45/Microsoft.ApplicationInsights.XML -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/net45/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/net45/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/net46/Microsoft.ApplicationInsights.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/net46/Microsoft.ApplicationInsights.XML -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/net46/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/net46/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/netstandard1.5/Microsoft.ApplicationInsights.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/netstandard1.5/Microsoft.ApplicationInsights.XML -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/netstandard1.5/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/netstandard1.5/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/portable-win81%2Bwpa81/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/portable-win81%2Bwpa81/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/uap10.0/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/uap10.0/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/wp8/Microsoft.ApplicationInsights.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.2.2.0/lib/wp8/Microsoft.ApplicationInsights.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Agent.Intercept.2.0.6/Microsoft.ApplicationInsights.Agent.Intercept.2.0.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Agent.Intercept.2.0.6/Microsoft.ApplicationInsights.Agent.Intercept.2.0.6.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Agent.Intercept.2.0.6/lib/net40/Microsoft.AI.Agent.Intercept.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Agent.Intercept.2.0.6/lib/net40/Microsoft.AI.Agent.Intercept.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Agent.Intercept.2.0.6/lib/net45/Microsoft.AI.Agent.Intercept.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Agent.Intercept.2.0.6/lib/net45/Microsoft.AI.Agent.Intercept.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.DependencyCollector.2.2.0/Microsoft.ApplicationInsights.DependencyCollector.2.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.DependencyCollector.2.2.0/Microsoft.ApplicationInsights.DependencyCollector.2.2.0.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.DependencyCollector.2.2.0/content/ApplicationInsights.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.DependencyCollector.2.2.0/content/ApplicationInsights.config.install.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.DependencyCollector.2.2.0/content/ApplicationInsights.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.DependencyCollector.2.2.0/content/ApplicationInsights.config.transform -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.DependencyCollector.2.2.0/content/ApplicationInsights.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.DependencyCollector.2.2.0/content/ApplicationInsights.config.uninstall.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.DependencyCollector.2.2.0/lib/net40/Microsoft.AI.DependencyCollector.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.DependencyCollector.2.2.0/lib/net40/Microsoft.AI.DependencyCollector.XML -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.DependencyCollector.2.2.0/lib/net40/Microsoft.AI.DependencyCollector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.DependencyCollector.2.2.0/lib/net40/Microsoft.AI.DependencyCollector.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.DependencyCollector.2.2.0/lib/net45/Microsoft.AI.DependencyCollector.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.DependencyCollector.2.2.0/lib/net45/Microsoft.AI.DependencyCollector.XML -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.DependencyCollector.2.2.0/lib/net45/Microsoft.AI.DependencyCollector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.DependencyCollector.2.2.0/lib/net45/Microsoft.AI.DependencyCollector.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0/Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0/Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0/content/ApplicationInsights.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0/content/ApplicationInsights.config.install.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0/content/ApplicationInsights.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0/content/ApplicationInsights.config.transform -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0/content/ApplicationInsights.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0/content/ApplicationInsights.config.uninstall.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0/lib/net40/Microsoft.AI.PerfCounterCollector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0/lib/net40/Microsoft.AI.PerfCounterCollector.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0/lib/net45/Microsoft.AI.PerfCounterCollector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.PerfCounterCollector.2.2.0/lib/net45/Microsoft.AI.PerfCounterCollector.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/Microsoft.ApplicationInsights.Web.2.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/Microsoft.ApplicationInsights.Web.2.2.0.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net40/ApplicationInsights.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net40/ApplicationInsights.config.install.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net40/ApplicationInsights.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net40/ApplicationInsights.config.transform -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net40/ApplicationInsights.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net40/ApplicationInsights.config.uninstall.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net40/web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net40/web.config.install.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net40/web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net40/web.config.uninstall.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net45/ApplicationInsights.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net45/ApplicationInsights.config.install.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net45/ApplicationInsights.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net45/ApplicationInsights.config.transform -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net45/ApplicationInsights.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net45/ApplicationInsights.config.uninstall.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net45/web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net45/web.config.install.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net45/web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/content/net45/web.config.uninstall.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/lib/net40/Microsoft.AI.Web.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/lib/net40/Microsoft.AI.Web.XML -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/lib/net40/Microsoft.AI.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/lib/net40/Microsoft.AI.Web.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/lib/net45/Microsoft.AI.Web.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/lib/net45/Microsoft.AI.Web.XML -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/lib/net45/Microsoft.AI.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.Web.2.2.0/lib/net45/Microsoft.AI.Web.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/Microsoft.ApplicationInsights.WindowsServer.2.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/Microsoft.ApplicationInsights.WindowsServer.2.2.0.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/Tools/install.ps1 -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/content/ApplicationInsights.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/content/ApplicationInsights.config.install.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/content/ApplicationInsights.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/content/ApplicationInsights.config.transform -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/content/ApplicationInsights.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/content/ApplicationInsights.config.uninstall.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/lib/net40/Microsoft.AI.WindowsServer.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/lib/net40/Microsoft.AI.WindowsServer.XML -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/lib/net40/Microsoft.AI.WindowsServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/lib/net40/Microsoft.AI.WindowsServer.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/lib/net45/Microsoft.AI.WindowsServer.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/lib/net45/Microsoft.AI.WindowsServer.XML -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/lib/net45/Microsoft.AI.WindowsServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.2.2.0/lib/net45/Microsoft.AI.WindowsServer.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0/content/ApplicationInsights.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0/content/ApplicationInsights.config.install.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0/content/ApplicationInsights.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0/content/ApplicationInsights.config.transform -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0/content/ApplicationInsights.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0/content/ApplicationInsights.config.uninstall.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0/lib/net40/Microsoft.AI.ServerTelemetryChannel.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0/lib/net40/Microsoft.AI.ServerTelemetryChannel.XML -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0/lib/net40/Microsoft.AI.ServerTelemetryChannel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0/lib/net40/Microsoft.AI.ServerTelemetryChannel.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0/lib/net45/Microsoft.AI.ServerTelemetryChannel.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0/lib/net45/Microsoft.AI.ServerTelemetryChannel.XML -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0/lib/net45/Microsoft.AI.ServerTelemetryChannel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel.2.2.0/lib/net45/Microsoft.AI.ServerTelemetryChannel.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.install.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Mvc.5.2.3/Content/Web.config.uninstall.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Mvc.5.2.3/Microsoft.AspNet.Mvc.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Mvc.5.2.3/Microsoft.AspNet.Mvc.5.2.3.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/System.Web.Mvc.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/zh-Hans/System.Web.Mvc.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/zh-Hans/System.Web.Mvc.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/zh-Hans/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Mvc.5.2.3/lib/net45/zh-Hans/System.Web.Mvc.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Mvc.zh-Hans.5.2.3/Microsoft.AspNet.Mvc.zh-Hans.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Mvc.zh-Hans.5.2.3/Microsoft.AspNet.Mvc.zh-Hans.5.2.3.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Mvc.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Web.Mvc.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Mvc.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Web.Mvc.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Mvc.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Mvc.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Web.Mvc.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Razor.3.2.3/Microsoft.AspNet.Razor.3.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Razor.3.2.3/Microsoft.AspNet.Razor.3.2.3.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/System.Web.Razor.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/zh-Hans/System.Web.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/zh-Hans/System.Web.Razor.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/zh-Hans/system.web.razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Razor.3.2.3/lib/net45/zh-Hans/system.web.razor.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Razor.zh-Hans.3.2.3/Microsoft.AspNet.Razor.zh-Hans.3.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Razor.zh-Hans.3.2.3/Microsoft.AspNet.Razor.zh-Hans.3.2.3.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Razor.zh-Hans.3.2.3/lib/net45/zh-Hans/System.Web.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Razor.zh-Hans.3.2.3/lib/net45/zh-Hans/System.Web.Razor.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Razor.zh-Hans.3.2.3/lib/net45/zh-Hans/system.web.razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Razor.zh-Hans.3.2.3/lib/net45/zh-Hans/system.web.razor.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Web.Optimization.1.1.3/Microsoft.AspNet.Web.Optimization.1.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Web.Optimization.1.1.3/Microsoft.AspNet.Web.Optimization.1.1.3.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/System.Web.Optimization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/System.Web.Optimization.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/system.web.optimization.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/system.web.optimization.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/zh-Hans/System.Web.Optimization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Web.Optimization.1.1.3/lib/net40/zh-Hans/System.Web.Optimization.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Web.Optimization.zh-Hans.1.1.3/Microsoft.AspNet.Web.Optimization.zh-Hans.1.1.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Web.Optimization.zh-Hans.1.1.3/Microsoft.AspNet.Web.Optimization.zh-Hans.1.1.3.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.Web.Optimization.zh-Hans.1.1.3/lib/net40/zh-Hans/System.Web.Optimization.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.Web.Optimization.zh-Hans.1.1.3/lib/net40/zh-Hans/System.Web.Optimization.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.5.2.3/Microsoft.AspNet.WebApi.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.5.2.3/Microsoft.AspNet.WebApi.5.2.3.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.5.2.3/Microsoft.AspNet.WebApi.Client.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.5.2.3/Microsoft.AspNet.WebApi.Client.5.2.3.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/System.Net.Http.Formatting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/System.Net.Http.Formatting.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/zh-Hans/System.Net.Http.Formatting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/zh-Hans/System.Net.Http.Formatting.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/zh-Hans/System.Net.Http.Formatting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/net45/zh-Hans/System.Net.Http.Formatting.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/portable-wp8%2Bnetcore45%2Bnet45%2Bwp81%2Bwpa81/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/portable-wp8%2Bnetcore45%2Bnet45%2Bwp81%2Bwpa81/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/portable-wp8%2Bnetcore45%2Bnet45%2Bwp81%2Bwpa81/System.Net.Http.Formatting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.5.2.3/lib/portable-wp8%2Bnetcore45%2Bnet45%2Bwp81%2Bwpa81/System.Net.Http.Formatting.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3/Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3/Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Net.Http.Formatting.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Net.Http.Formatting.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Net.Http.Formatting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Client.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Net.Http.Formatting.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Content/web.config.transform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Content/web.config.transform -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Microsoft.AspNet.WebApi.Core.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.5.2.3/Microsoft.AspNet.WebApi.Core.5.2.3.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/System.Web.Http.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/zh-Hans/System.Web.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/zh-Hans/System.Web.Http.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/zh-Hans/System.Web.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.5.2.3/lib/net45/zh-Hans/System.Web.Http.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3/Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3/Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Web.Http.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Web.Http.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Web.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.Core.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Web.Http.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ApiDescriptionExtensions.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ApiDescriptionExtensions.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/App_Start/HelpPageConfig.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/App_Start/HelpPageConfig.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Controllers/HelpController.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Controllers/HelpController.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/HelpPage.css.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/HelpPage.css.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/HelpPageAreaRegistration.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/HelpPageAreaRegistration.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/HelpPageConfigurationExtensions.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/HelpPageConfigurationExtensions.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/CollectionModelDescription.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/ComplexTypeModelDescription.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/DictionaryModelDescription.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/EnumTypeModelDescription.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/EnumValueDescription.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/IModelDocumentationProvider.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/KeyValuePairModelDescription.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/ModelDescription.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/ModelDescription.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/ModelDescriptionGenerator.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/ModelNameAttribute.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/ModelNameHelper.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/ParameterAnnotation.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/ParameterDescription.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/ModelDescriptions/SimpleTypeModelDescription.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Models/HelpPageApiModel.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Models/HelpPageApiModel.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/SampleGeneration/HelpPageSampleGenerator.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/SampleGeneration/HelpPageSampleKey.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/SampleGeneration/ImageSample.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/SampleGeneration/ImageSample.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/SampleGeneration/InvalidSample.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/SampleGeneration/InvalidSample.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/SampleGeneration/ObjectGenerator.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/SampleGeneration/SampleDirection.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/SampleGeneration/SampleDirection.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/SampleGeneration/TextSample.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/SampleGeneration/TextSample.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/Api.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/Api.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/ApiGroup.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/CollectionModelDescription.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/ComplexTypeModelDescription.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/DictionaryModelDescription.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/EnumTypeModelDescription.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/HelpPageApiModel.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/ImageSample.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/InvalidSample.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/KeyValuePairModelDescription.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/ModelDescriptionLink.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/Parameters.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/Samples.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/SimpleTypeModelDescription.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/DisplayTemplates/TextSample.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/Index.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/Index.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/ResourceModel.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Help/ResourceModel.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Shared/_Layout.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Shared/_Layout.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/Web.config -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/_ViewStart.cshtml.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/Views/_ViewStart.cshtml.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/XmlDocumentationProvider.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Content/Areas/HelpPage/XmlDocumentationProvider.cs.pp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Microsoft.AspNet.WebApi.HelpPage.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.HelpPage.5.2.3/Microsoft.AspNet.WebApi.HelpPage.5.2.3.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/Microsoft.AspNet.WebApi.WebHost.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/Microsoft.AspNet.WebApi.WebHost.5.2.3.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/lib/net45/System.Web.Http.WebHost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/lib/net45/System.Web.Http.WebHost.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/lib/net45/System.Web.Http.WebHost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/lib/net45/System.Web.Http.WebHost.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/lib/net45/zh-Hans/System.Web.Http.WebHost.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/lib/net45/zh-Hans/System.Web.Http.WebHost.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/lib/net45/zh-Hans/System.Web.Http.WebHost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.WebHost.5.2.3/lib/net45/zh-Hans/System.Web.Http.WebHost.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Web.Http.WebHost.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Web.Http.WebHost.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Web.Http.WebHost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebApi.WebHost.zh-Hans.5.2.3/lib/net45/zh-Hans/System.Web.Http.WebHost.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.install.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/Content/Web.config.uninstall.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/Microsoft.AspNet.WebPages.3.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/Microsoft.AspNet.WebPages.3.2.3.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.Helpers.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Deployment.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.Razor.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/System.Web.WebPages.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/zh-Hans/System.Web.Helpers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/zh-Hans/System.Web.Helpers.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/zh-Hans/System.Web.WebPages.Deployment.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/zh-Hans/System.Web.WebPages.Deployment.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/zh-Hans/System.Web.WebPages.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/zh-Hans/System.Web.WebPages.Razor.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/zh-Hans/System.Web.WebPages.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/zh-Hans/System.Web.WebPages.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/zh-Hans/system.web.helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/zh-Hans/system.web.helpers.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/zh-Hans/system.web.webpages.deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/zh-Hans/system.web.webpages.deployment.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/zh-Hans/system.web.webpages.razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/zh-Hans/system.web.webpages.razor.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/zh-Hans/system.web.webpages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.3.2.3/lib/net45/zh-Hans/system.web.webpages.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/Microsoft.AspNet.WebPages.zh-Hans.3.2.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/Microsoft.AspNet.WebPages.zh-Hans.3.2.3.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/lib/net45/zh-Hans/System.Web.Helpers.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/lib/net45/zh-Hans/System.Web.Helpers.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/lib/net45/zh-Hans/System.Web.WebPages.Deployment.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/lib/net45/zh-Hans/System.Web.WebPages.Deployment.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/lib/net45/zh-Hans/System.Web.WebPages.Razor.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/lib/net45/zh-Hans/System.Web.WebPages.Razor.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/lib/net45/zh-Hans/System.Web.WebPages.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/lib/net45/zh-Hans/System.Web.WebPages.resources.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/lib/net45/zh-Hans/system.web.helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/lib/net45/zh-Hans/system.web.helpers.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/lib/net45/zh-Hans/system.web.webpages.deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/lib/net45/zh-Hans/system.web.webpages.deployment.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/lib/net45/zh-Hans/system.web.webpages.razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/lib/net45/zh-Hans/system.web.webpages.razor.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/lib/net45/zh-Hans/system.web.webpages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.AspNet.WebPages.zh-Hans.3.2.3/lib/net45/zh-Hans/system.web.webpages.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/build/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/build/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/content/web.config.install.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/content/web.config.install.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/content/web.config.uninstall.xdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/content/web.config.uninstall.xdt -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/tools/install.ps1 -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.3/tools/uninstall.ps1 -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/Microsoft.Net.Compilers.1.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/Microsoft.Net.Compilers.1.3.2.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/ThirdPartyNotices.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/ThirdPartyNotices.rtf -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/build/Microsoft.Net.Compilers.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/build/Microsoft.Net.Compilers.props -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.Build.Tasks.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.Build.Tasks.CodeAnalysis.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CSharp.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CSharp.Core.targets -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.CSharp.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.CSharp.Scripting.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.Scripting.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.DiaSymReader.Native.amd64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.DiaSymReader.Native.amd64.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.DiaSymReader.Native.x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.DiaSymReader.Native.x86.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.VisualBasic.Core.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/Microsoft.VisualBasic.Core.targets -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/System.AppContext.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/System.AppContext.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/System.Diagnostics.StackTrace.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/System.Diagnostics.StackTrace.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/System.IO.FileSystem.Primitives.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/System.IO.FileSystem.Primitives.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/System.IO.FileSystem.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/System.IO.FileSystem.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/VBCSCompiler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/VBCSCompiler.exe -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/VBCSCompiler.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/VBCSCompiler.exe.config -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/csc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/csc.exe -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/csc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/csc.exe.config -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/csc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/csc.rsp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/csi.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/csi.exe -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/csi.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/csi.rsp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/vbc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/vbc.exe -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/vbc.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/vbc.exe.config -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/vbc.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Net.Compilers.1.3.2/tools/vbc.rsp -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Web.Infrastructure.1.0.0.0/tools/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Web.Infrastructure.1.0.0.0/tools/Install.ps1 -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Web.Infrastructure.1.0.0.0/tools/Uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Web.Infrastructure.1.0.0.0/tools/Uninstall.ps1 -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Web.Infrastructure.1.0.0.0/tools/VS.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Web.Infrastructure.1.0.0.0/tools/VS.psd1 -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Microsoft.Web.Infrastructure.1.0.0.0/tools/VS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Microsoft.Web.Infrastructure.1.0.0.0/tools/VS.psm1 -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Modernizr.2.6.2/Content/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Modernizr.2.6.2/Content/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Modernizr.2.6.2/Modernizr.2.6.2.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Modernizr.2.6.2/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Modernizr.2.6.2/Tools/common.ps1 -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Modernizr.2.6.2/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Modernizr.2.6.2/Tools/install.ps1 -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Modernizr.2.6.2/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Modernizr.2.6.2/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/Newtonsoft.Json.6.0.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/Newtonsoft.Json.6.0.4.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/netcore45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/netcore45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/netcore45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/netcore45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/portable-net40%2Bsl5%2Bwp80%2Bwin8%2Bwpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/portable-net40%2Bsl5%2Bwp80%2Bwin8%2Bwpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/portable-net40%2Bsl5%2Bwp80%2Bwin8%2Bwpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/portable-net40%2Bsl5%2Bwp80%2Bwin8%2Bwpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/portable-net45%2Bwp80%2Bwin8%2Bwpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/portable-net45%2Bwp80%2Bwin8%2Bwpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/portable-net45%2Bwp80%2Bwin8%2Bwpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/lib/portable-net45%2Bwp80%2Bwin8%2Bwpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Newtonsoft.Json.6.0.4/tools/install.ps1 -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Respond.1.2.0/Respond.1.2.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Respond.1.2.0/Respond.1.2.0.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Respond.1.2.0/content/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Respond.1.2.0/content/Scripts/respond.js -------------------------------------------------------------------------------- /WiFiLocationServer/packages/Respond.1.2.0/content/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/Respond.1.2.0/content/Scripts/respond.min.js -------------------------------------------------------------------------------- /WiFiLocationServer/packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/WebGrease.1.5.2/WebGrease.1.5.2.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/WebGrease.1.5.2/lib/WebGrease.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/WebGrease.1.5.2/lib/WebGrease.dll -------------------------------------------------------------------------------- /WiFiLocationServer/packages/WebGrease.1.5.2/tools/WG.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/WebGrease.1.5.2/tools/WG.exe -------------------------------------------------------------------------------- /WiFiLocationServer/packages/bootstrap.3.0.0/bootstrap.3.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/bootstrap.3.0.0/bootstrap.3.0.0.nupkg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/bootstrap.3.0.0/content/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/bootstrap.3.0.0/content/Content/bootstrap.css -------------------------------------------------------------------------------- /WiFiLocationServer/packages/bootstrap.3.0.0/content/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/bootstrap.3.0.0/content/Content/bootstrap.min.css -------------------------------------------------------------------------------- /WiFiLocationServer/packages/bootstrap.3.0.0/content/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/bootstrap.3.0.0/content/Scripts/bootstrap.js -------------------------------------------------------------------------------- /WiFiLocationServer/packages/bootstrap.3.0.0/content/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/bootstrap.3.0.0/content/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /WiFiLocationServer/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /WiFiLocationServer/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /WiFiLocationServer/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /WiFiLocationServer/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/bootstrap.3.0.0/content/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /WiFiLocationServer/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2-vsdoc.js -------------------------------------------------------------------------------- /WiFiLocationServer/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /WiFiLocationServer/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /WiFiLocationServer/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/jQuery.1.10.2/Content/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /WiFiLocationServer/packages/jQuery.1.10.2/Tools/common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/jQuery.1.10.2/Tools/common.ps1 -------------------------------------------------------------------------------- /WiFiLocationServer/packages/jQuery.1.10.2/Tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/jQuery.1.10.2/Tools/install.ps1 -------------------------------------------------------------------------------- /WiFiLocationServer/packages/jQuery.1.10.2/Tools/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/jQuery.1.10.2/Tools/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /WiFiLocationServer/packages/jQuery.1.10.2/Tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/jQuery.1.10.2/Tools/uninstall.ps1 -------------------------------------------------------------------------------- /WiFiLocationServer/packages/jQuery.1.10.2/jQuery.1.10.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/WiFiLocationServer/packages/jQuery.1.10.2/jQuery.1.10.2.nupkg -------------------------------------------------------------------------------- /image/collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/image/collection.png -------------------------------------------------------------------------------- /image/location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/image/location.png -------------------------------------------------------------------------------- /image/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lavender21/WiFiLocation/HEAD/image/log.png --------------------------------------------------------------------------------