mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-09 07:08:01 +08:00
64 lines
2.9 KiB
Plaintext
64 lines
2.9 KiB
Plaintext
![]() |
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<!--
|
||
|
有关如何配置 ASP.NET 应用程序的详细信息,请访问
|
||
|
http://go.microsoft.com/fwlink/?LinkId=301880
|
||
|
-->
|
||
|
<configuration>
|
||
|
<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>
|
||
|
<add name="OpenAuthDBContext" connectionString="Data Source=.;Initial Catalog=OpenAuthDB;Persist Security Info=True;User ID=sa;Password=516688;MultipleActiveResultSets=True"
|
||
|
providerName="System.Data.SqlClient" />
|
||
|
</connectionStrings>
|
||
|
|
||
|
|
||
|
<appSettings>
|
||
|
<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" />
|
||
|
</appSettings>
|
||
|
<system.web>
|
||
|
<authentication mode="None" />
|
||
|
<compilation debug="true" targetFramework="4.5" />
|
||
|
<httpRuntime targetFramework="4.5" />
|
||
|
</system.web>
|
||
|
<system.webServer>
|
||
|
<modules>
|
||
|
<remove name="FormsAuthenticationModule" />
|
||
|
</modules>
|
||
|
</system.webServer>
|
||
|
<runtime>
|
||
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
||
|
<dependentAssembly>
|
||
|
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
|
||
|
<bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
|
||
|
</dependentAssembly>
|
||
|
<dependentAssembly>
|
||
|
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
|
||
|
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
|
||
|
</dependentAssembly>
|
||
|
<dependentAssembly>
|
||
|
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
|
||
|
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
|
||
|
</dependentAssembly>
|
||
|
<dependentAssembly>
|
||
|
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
|
||
|
<bindingRedirect oldVersion="1.0.0.0-5.1.0.0" newVersion="5.1.0.0" />
|
||
|
</dependentAssembly>
|
||
|
<dependentAssembly>
|
||
|
<assemblyIdentity name="Autofac" publicKeyToken="17863af14b0044da" culture="neutral" />
|
||
|
<bindingRedirect oldVersion="0.0.0.0-3.5.0.0" newVersion="3.5.0.0" />
|
||
|
</dependentAssembly>
|
||
|
</assemblyBinding>
|
||
|
</runtime>
|
||
|
<entityFramework>
|
||
|
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
|
||
|
<providers>
|
||
|
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
|
||
|
</providers>
|
||
|
</entityFramework>
|
||
|
</configuration>
|