2019-03-22 13:56:11 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
有关如何配置 ASP.NET 应用程序的详细信息,请访问
|
|
|
|
https://go.microsoft.com/fwlink/?LinkId=301880
|
|
|
|
-->
|
|
|
|
<configuration>
|
2019-03-22 15:53:23 +08:00
|
|
|
<configSections>
|
|
|
|
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
|
|
|
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
|
|
|
</configSections>
|
|
|
|
<connectionStrings>
|
2019-03-26 11:09:57 +08:00
|
|
|
<add name="HisFrontDbContext" connectionString="Server=FALCON-PC\SQLSERVER2008R2;Database=MyHis;User ID=sa;Password=saabc123" providerName="System.Data.SqlClient" />
|
2019-03-22 15:53:23 +08:00
|
|
|
</connectionStrings>
|
2019-03-22 13:56:11 +08:00
|
|
|
<appSettings>
|
2019-03-22 15:53:23 +08:00
|
|
|
<add key="webpages:Version" value="3.0.0.0" />
|
|
|
|
<add key="webpages:Enabled" value="false" />
|
|
|
|
<add key="ClientValidationEnabled" value="true" />
|
|
|
|
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
|
2019-03-22 13:56:11 +08:00
|
|
|
</appSettings>
|
|
|
|
<system.web>
|
2019-03-22 15:53:23 +08:00
|
|
|
<compilation debug="true" targetFramework="4.6.1" />
|
|
|
|
<httpRuntime targetFramework="4.6.1" />
|
2019-03-22 13:56:11 +08:00
|
|
|
<httpModules>
|
2019-03-22 15:53:23 +08:00
|
|
|
<add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" />
|
2019-03-22 13:56:11 +08:00
|
|
|
</httpModules>
|
|
|
|
</system.web>
|
|
|
|
<runtime>
|
|
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
|
|
<dependentAssembly>
|
2019-03-22 15:53:23 +08:00
|
|
|
<assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" />
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" />
|
2019-03-22 13:56:11 +08:00
|
|
|
</dependentAssembly>
|
|
|
|
<dependentAssembly>
|
2019-03-22 15:53:23 +08:00
|
|
|
<assemblyIdentity name="System.Diagnostics.DiagnosticSource" publicKeyToken="cc7b13ffcd2ddd51" />
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.0.2.1" newVersion="4.0.2.1" />
|
|
|
|
</dependentAssembly>
|
|
|
|
<dependentAssembly>
|
|
|
|
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" />
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-11.0.0.0" newVersion="11.0.0.0" />
|
|
|
|
</dependentAssembly>
|
2019-03-22 13:56:11 +08:00
|
|
|
<dependentAssembly>
|
2019-03-22 15:53:23 +08:00
|
|
|
<assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
|
|
|
|
<bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
|
2019-03-22 13:56:11 +08:00
|
|
|
</dependentAssembly>
|
|
|
|
<dependentAssembly>
|
2019-03-22 15:53:23 +08:00
|
|
|
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
|
2019-03-22 13:56:11 +08:00
|
|
|
</dependentAssembly>
|
|
|
|
<dependentAssembly>
|
2019-03-22 15:53:23 +08:00
|
|
|
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
|
|
|
|
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
|
2019-03-22 13:56:11 +08:00
|
|
|
</dependentAssembly>
|
|
|
|
<dependentAssembly>
|
2019-03-22 15:53:23 +08:00
|
|
|
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
|
|
|
|
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
|
2019-03-22 13:56:11 +08:00
|
|
|
</dependentAssembly>
|
|
|
|
<dependentAssembly>
|
2019-03-22 15:53:23 +08:00
|
|
|
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-5.2.4.0" newVersion="5.2.4.0" />
|
2019-03-22 13:56:11 +08:00
|
|
|
</dependentAssembly>
|
|
|
|
<dependentAssembly>
|
2019-03-22 15:53:23 +08:00
|
|
|
<assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
|
|
|
|
<bindingRedirect oldVersion="0.0.0.0-4.9.1.0" newVersion="4.9.1.0" />
|
2019-03-22 13:56:11 +08:00
|
|
|
</dependentAssembly>
|
|
|
|
</assemblyBinding>
|
|
|
|
</runtime>
|
|
|
|
<system.webServer>
|
|
|
|
<modules>
|
2019-03-22 15:53:23 +08:00
|
|
|
<remove name="TelemetryCorrelationHttpModule" />
|
|
|
|
<add name="TelemetryCorrelationHttpModule" type="Microsoft.AspNet.TelemetryCorrelation.TelemetryCorrelationHttpModule, Microsoft.AspNet.TelemetryCorrelation" preCondition="integratedMode,managedHandler" />
|
|
|
|
<remove name="ApplicationInsightsWebTracking" />
|
|
|
|
<add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" preCondition="managedHandler" />
|
2019-03-22 13:56:11 +08:00
|
|
|
</modules>
|
2019-03-22 15:53:23 +08:00
|
|
|
<validation validateIntegratedModeConfiguration="false" />
|
2019-03-22 13:56:11 +08:00
|
|
|
</system.webServer>
|
|
|
|
<system.codedom>
|
|
|
|
<compilers>
|
2019-03-22 15:53:23 +08:00
|
|
|
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:1659;1699;1701" />
|
|
|
|
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:41008 /define:_MYTYPE=\"Web\" /optionInfer+" />
|
2019-03-22 13:56:11 +08:00
|
|
|
</compilers>
|
|
|
|
</system.codedom>
|
2019-03-22 15:53:23 +08:00
|
|
|
<entityFramework>
|
|
|
|
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
|
|
|
|
<parameters>
|
|
|
|
<parameter value="mssqllocaldb" />
|
|
|
|
</parameters>
|
|
|
|
</defaultConnectionFactory>
|
|
|
|
<providers>
|
|
|
|
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
|
|
|
|
</providers>
|
|
|
|
</entityFramework>
|
2019-03-25 16:32:58 +08:00
|
|
|
<system.serviceModel>
|
|
|
|
<bindings>
|
|
|
|
<basicHttpBinding>
|
|
|
|
<binding name="HisInterfaceSoap" />
|
|
|
|
</basicHttpBinding>
|
|
|
|
</bindings>
|
|
|
|
<client>
|
|
|
|
<endpoint address="http://localhost:22888/ws/HisInterface.asmx"
|
|
|
|
binding="basicHttpBinding" bindingConfiguration="HisInterfaceSoap"
|
|
|
|
contract="HisServer.HisInterfaceSoap" name="HisInterfaceSoap" />
|
|
|
|
</client>
|
|
|
|
</system.serviceModel>
|
2019-03-22 15:53:23 +08:00
|
|
|
</configuration>
|