mirror of
https://github.com/ckaczor/WeatherService.git
synced 2026-02-09 01:32:39 -05:00
Update packages
This commit is contained in:
95
App.config
95
App.config
@@ -1,37 +1,27 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<configuration>
|
<configuration>
|
||||||
<configSections>
|
<configSections>
|
||||||
<sectionGroup name="applicationSettings"
|
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||||
type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
<section name="WeatherService.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
||||||
<section name="WeatherService.Settings"
|
|
||||||
type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
|
|
||||||
requirePermission="false" />
|
|
||||||
</sectionGroup>
|
</sectionGroup>
|
||||||
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
||||||
<section name="entityFramework"
|
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
||||||
type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
|
|
||||||
requirePermission="false" />
|
|
||||||
</configSections>
|
</configSections>
|
||||||
<startup>
|
<startup>
|
||||||
<supportedRuntime version="v4.0"
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
|
||||||
sku=".NETFramework,Version=v4.5" />
|
|
||||||
</startup>
|
</startup>
|
||||||
<applicationSettings>
|
<applicationSettings>
|
||||||
<WeatherService.Settings>
|
<WeatherService.Settings>
|
||||||
<setting name="LogDatabase"
|
<setting name="LogDatabase" serializeAs="String">
|
||||||
serializeAs="String">
|
|
||||||
<value>False</value>
|
<value>False</value>
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="PollingInterval"
|
<setting name="PollingInterval" serializeAs="String">
|
||||||
serializeAs="String">
|
|
||||||
<value>00:00:01</value>
|
<value>00:00:01</value>
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="SignalR_ListenUrl"
|
<setting name="SignalR_ListenUrl" serializeAs="String">
|
||||||
serializeAs="String">
|
|
||||||
<value>http://*:9090</value>
|
<value>http://*:9090</value>
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="SignalR_ConnectUrl"
|
<setting name="SignalR_ConnectUrl" serializeAs="String">
|
||||||
serializeAs="String">
|
|
||||||
<value>http://localhost:9090</value>
|
<value>http://localhost:9090</value>
|
||||||
</setting>
|
</setting>
|
||||||
</WeatherService.Settings>
|
</WeatherService.Settings>
|
||||||
@@ -39,8 +29,7 @@
|
|||||||
<system.serviceModel>
|
<system.serviceModel>
|
||||||
<bindings>
|
<bindings>
|
||||||
<webHttpBinding>
|
<webHttpBinding>
|
||||||
<binding name="webHttpBindingWithJson"
|
<binding name="webHttpBindingWithJson" crossDomainScriptAccessEnabled="true" />
|
||||||
crossDomainScriptAccessEnabled="true" />
|
|
||||||
</webHttpBinding>
|
</webHttpBinding>
|
||||||
<netTcpBinding>
|
<netTcpBinding>
|
||||||
<binding name="netTcpBindingNoSecurity">
|
<binding name="netTcpBindingNoSecurity">
|
||||||
@@ -49,27 +38,17 @@
|
|||||||
</netTcpBinding>
|
</netTcpBinding>
|
||||||
</bindings>
|
</bindings>
|
||||||
<services>
|
<services>
|
||||||
<service behaviorConfiguration="Default"
|
<service behaviorConfiguration="Default" name="WeatherService.WeatherServiceDuplex">
|
||||||
name="WeatherService.WeatherServiceDuplex">
|
<endpoint address="" binding="netTcpBinding" bindingConfiguration="netTcpBindingNoSecurity" contract="WeatherService.IWeatherServiceDuplex" />
|
||||||
<endpoint address=""
|
<endpoint address="mex" binding="mexTcpBinding" contract="IMetadataExchange" />
|
||||||
binding="netTcpBinding"
|
|
||||||
bindingConfiguration="netTcpBindingNoSecurity"
|
|
||||||
contract="WeatherService.IWeatherServiceDuplex" />
|
|
||||||
<endpoint address="mex"
|
|
||||||
binding="mexTcpBinding"
|
|
||||||
contract="IMetadataExchange" />
|
|
||||||
<host>
|
<host>
|
||||||
<baseAddresses>
|
<baseAddresses>
|
||||||
<add baseAddress="net.tcp://server:9001" />
|
<add baseAddress="net.tcp://server:9001" />
|
||||||
</baseAddresses>
|
</baseAddresses>
|
||||||
</host>
|
</host>
|
||||||
</service>
|
</service>
|
||||||
<service behaviorConfiguration="Default"
|
<service behaviorConfiguration="Default" name="WeatherService.WeatherService">
|
||||||
name="WeatherService.WeatherService">
|
<endpoint address="json" binding="webHttpBinding" bindingConfiguration="webHttpBindingWithJson" contract="WeatherService.IWeatherService" />
|
||||||
<endpoint address="json"
|
|
||||||
binding="webHttpBinding"
|
|
||||||
bindingConfiguration="webHttpBindingWithJson"
|
|
||||||
contract="WeatherService.IWeatherService" />
|
|
||||||
<host>
|
<host>
|
||||||
<baseAddresses>
|
<baseAddresses>
|
||||||
<add baseAddress="http://server:9000" />
|
<add baseAddress="http://server:9000" />
|
||||||
@@ -88,39 +67,24 @@
|
|||||||
<runtime>
|
<runtime>
|
||||||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.AspNet.SignalR.Core"
|
<assemblyIdentity name="Microsoft.AspNet.SignalR.Core" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
publicKeyToken="31bf3856ad364e35"
|
<bindingRedirect oldVersion="0.0.0.0-2.2.0.0" newVersion="2.2.0.0" />
|
||||||
culture="neutral" />
|
|
||||||
<bindingRedirect oldVersion="0.0.0.0-2.0.3.0"
|
|
||||||
newVersion="2.0.3.0" />
|
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.Owin"
|
<assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
publicKeyToken="31bf3856ad364e35"
|
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
|
||||||
culture="neutral" />
|
|
||||||
<bindingRedirect oldVersion="0.0.0.0-2.1.0.0"
|
|
||||||
newVersion="2.1.0.0" />
|
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Newtonsoft.Json"
|
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
||||||
publicKeyToken="30ad4fe6b2a6aeed"
|
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
|
||||||
culture="neutral" />
|
|
||||||
<bindingRedirect oldVersion="0.0.0.0-6.0.0.0"
|
|
||||||
newVersion="6.0.0.0" />
|
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="Microsoft.Owin.Security"
|
<assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
publicKeyToken="31bf3856ad364e35"
|
<bindingRedirect oldVersion="0.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
|
||||||
culture="neutral" />
|
|
||||||
<bindingRedirect oldVersion="0.0.0.0-2.1.0.0"
|
|
||||||
newVersion="2.1.0.0" />
|
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
<dependentAssembly>
|
<dependentAssembly>
|
||||||
<assemblyIdentity name="System.Web.Cors"
|
<assemblyIdentity name="System.Web.Cors" publicKeyToken="31bf3856ad364e35" culture="neutral" />
|
||||||
publicKeyToken="31bf3856ad364e35"
|
<bindingRedirect oldVersion="0.0.0.0-5.2.2.0" newVersion="5.2.2.0" />
|
||||||
culture="neutral" />
|
|
||||||
<bindingRedirect oldVersion="0.0.0.0-5.1.0.0"
|
|
||||||
newVersion="5.1.0.0" />
|
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
</runtime>
|
</runtime>
|
||||||
@@ -131,16 +95,11 @@
|
|||||||
</parameters>
|
</parameters>
|
||||||
</defaultConnectionFactory>
|
</defaultConnectionFactory>
|
||||||
<providers>
|
<providers>
|
||||||
<provider invariantName="System.Data.SqlClient"
|
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
|
||||||
type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
|
|
||||||
</providers>
|
</providers>
|
||||||
</entityFramework>
|
</entityFramework>
|
||||||
<connectionStrings>
|
<connectionStrings>
|
||||||
<add name="WeatherData"
|
<add name="WeatherData" connectionString="data source=localhost\Weather;initial catalog=Weather;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework" providerName="System.Data.SqlClient" />
|
||||||
connectionString="data source=localhost\Weather;initial catalog=Weather;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework"
|
<add name="WeatherArchiveData" connectionString="data source=localhost\Weather;initial catalog=WeatherDataTest;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework" providerName="System.Data.SqlClient" />
|
||||||
providerName="System.Data.SqlClient" />
|
|
||||||
<add name="WeatherArchiveData"
|
|
||||||
connectionString="data source=localhost\Weather;initial catalog=WeatherDataTest;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework"
|
|
||||||
providerName="System.Data.SqlClient" />
|
|
||||||
</connectionStrings>
|
</connectionStrings>
|
||||||
</configuration>
|
</configuration>
|
||||||
@@ -58,33 +58,41 @@
|
|||||||
<Reference Include="EntityFramework.SqlServer">
|
<Reference Include="EntityFramework.SqlServer">
|
||||||
<HintPath>packages\EntityFramework.6.1.2\lib\net45\EntityFramework.SqlServer.dll</HintPath>
|
<HintPath>packages\EntityFramework.6.1.2\lib\net45\EntityFramework.SqlServer.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.AspNet.SignalR.Client">
|
<Reference Include="Microsoft.AspNet.SignalR.Client, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||||
<HintPath>packages\Microsoft.AspNet.SignalR.Client.2.0.3\lib\net45\Microsoft.AspNet.SignalR.Client.dll</HintPath>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<HintPath>packages\Microsoft.AspNet.SignalR.Client.2.2.0\lib\net45\Microsoft.AspNet.SignalR.Client.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.AspNet.SignalR.Core">
|
<Reference Include="Microsoft.AspNet.SignalR.Core, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||||
<HintPath>packages\Microsoft.AspNet.SignalR.Core.2.0.3\lib\net45\Microsoft.AspNet.SignalR.Core.dll</HintPath>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<HintPath>packages\Microsoft.AspNet.SignalR.Core.2.2.0\lib\net45\Microsoft.AspNet.SignalR.Core.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.AspNet.SignalR.Owin">
|
<Reference Include="Microsoft.AspNet.SignalR.Owin, Version=1.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||||
<HintPath>packages\Microsoft.AspNet.SignalR.Owin.1.2.1\lib\net45\Microsoft.AspNet.SignalR.Owin.dll</HintPath>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<HintPath>packages\Microsoft.AspNet.SignalR.Owin.1.2.2\lib\net45\Microsoft.AspNet.SignalR.Owin.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.Owin">
|
<Reference Include="Microsoft.Owin, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||||
<HintPath>packages\Microsoft.Owin.2.1.0\lib\net45\Microsoft.Owin.dll</HintPath>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<HintPath>packages\Microsoft.Owin.3.0.0\lib\net45\Microsoft.Owin.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.Owin.Cors">
|
<Reference Include="Microsoft.Owin.Cors, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||||
<HintPath>packages\Microsoft.Owin.Cors.2.1.0\lib\net45\Microsoft.Owin.Cors.dll</HintPath>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<HintPath>packages\Microsoft.Owin.Cors.3.0.0\lib\net45\Microsoft.Owin.Cors.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.Owin.Host.HttpListener">
|
<Reference Include="Microsoft.Owin.Host.HttpListener, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||||
<HintPath>packages\Microsoft.Owin.Host.HttpListener.2.1.0\lib\net45\Microsoft.Owin.Host.HttpListener.dll</HintPath>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<HintPath>packages\Microsoft.Owin.Host.HttpListener.3.0.0\lib\net45\Microsoft.Owin.Host.HttpListener.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.Owin.Hosting">
|
<Reference Include="Microsoft.Owin.Hosting, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||||
<HintPath>packages\Microsoft.Owin.Hosting.2.1.0\lib\net45\Microsoft.Owin.Hosting.dll</HintPath>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<HintPath>packages\Microsoft.Owin.Hosting.3.0.0\lib\net45\Microsoft.Owin.Hosting.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.Owin.Security">
|
<Reference Include="Microsoft.Owin.Security, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||||
<HintPath>packages\Microsoft.Owin.Security.2.1.0\lib\net45\Microsoft.Owin.Security.dll</HintPath>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<HintPath>packages\Microsoft.Owin.Security.3.0.0\lib\net45\Microsoft.Owin.Security.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||||
<SpecificVersion>False</SpecificVersion>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
<HintPath>packages\Newtonsoft.Json.6.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
|
<HintPath>packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Owin">
|
<Reference Include="Owin">
|
||||||
<HintPath>packages\Owin.1.0\lib\net40\Owin.dll</HintPath>
|
<HintPath>packages\Owin.1.0\lib\net40\Owin.dll</HintPath>
|
||||||
@@ -100,8 +108,9 @@
|
|||||||
<Reference Include="System.Security" />
|
<Reference Include="System.Security" />
|
||||||
<Reference Include="System.ServiceModel" />
|
<Reference Include="System.ServiceModel" />
|
||||||
<Reference Include="System.ServiceModel.Web" />
|
<Reference Include="System.ServiceModel.Web" />
|
||||||
<Reference Include="System.Web.Cors">
|
<Reference Include="System.Web.Cors, Version=5.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||||
<HintPath>packages\Microsoft.AspNet.Cors.5.1.2\lib\net45\System.Web.Cors.dll</HintPath>
|
<SpecificVersion>False</SpecificVersion>
|
||||||
|
<HintPath>packages\Microsoft.AspNet.Cors.5.2.2\lib\net45\System.Web.Cors.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="System.Xml.Linq" />
|
<Reference Include="System.Xml.Linq" />
|
||||||
<Reference Include="System.Data.DataSetExtensions" />
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<packages>
|
<packages>
|
||||||
<package id="EntityFramework" version="6.1.2" targetFramework="net45" />
|
<package id="EntityFramework" version="6.1.2" targetFramework="net45" />
|
||||||
<package id="Microsoft.AspNet.Cors" version="5.1.2" targetFramework="net45" />
|
<package id="Microsoft.AspNet.Cors" version="5.2.2" targetFramework="net45" />
|
||||||
<package id="Microsoft.AspNet.SignalR.Client" version="2.0.3" targetFramework="net45" />
|
<package id="Microsoft.AspNet.SignalR.Client" version="2.2.0" targetFramework="net45" />
|
||||||
<package id="Microsoft.AspNet.SignalR.Core" version="2.0.3" targetFramework="net45" />
|
<package id="Microsoft.AspNet.SignalR.Core" version="2.2.0" targetFramework="net45" />
|
||||||
<package id="Microsoft.AspNet.SignalR.Owin" version="1.2.1" targetFramework="net45" />
|
<package id="Microsoft.AspNet.SignalR.Owin" version="1.2.2" targetFramework="net45" />
|
||||||
<package id="Microsoft.Owin" version="2.1.0" targetFramework="net45" />
|
<package id="Microsoft.Owin" version="3.0.0" targetFramework="net45" />
|
||||||
<package id="Microsoft.Owin.Cors" version="2.1.0" targetFramework="net45" />
|
<package id="Microsoft.Owin.Cors" version="3.0.0" targetFramework="net45" />
|
||||||
<package id="Microsoft.Owin.Host.HttpListener" version="2.1.0" targetFramework="net45" />
|
<package id="Microsoft.Owin.Host.HttpListener" version="3.0.0" targetFramework="net45" />
|
||||||
<package id="Microsoft.Owin.Hosting" version="2.1.0" targetFramework="net45" />
|
<package id="Microsoft.Owin.Hosting" version="3.0.0" targetFramework="net45" />
|
||||||
<package id="Microsoft.Owin.Security" version="2.1.0" targetFramework="net45" />
|
<package id="Microsoft.Owin.Security" version="3.0.0" targetFramework="net45" />
|
||||||
<package id="Newtonsoft.Json" version="6.0.3" targetFramework="net45" />
|
<package id="Newtonsoft.Json" version="6.0.8" targetFramework="net45" />
|
||||||
<package id="Owin" version="1.0" targetFramework="net45" />
|
<package id="Owin" version="1.0" targetFramework="net45" />
|
||||||
</packages>
|
</packages>
|
||||||
Reference in New Issue
Block a user