-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeb.config
40 lines (40 loc) · 2.49 KB
/
Web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
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=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<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>
<compilation targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
</system.web>
<connectionStrings>
<add name="bookstoreEntities1" connectionString="metadata=res://*/Models.BookDB.csdl|res://*/Models.BookDB.ssdl|res://*/Models.BookDB.msl;provider=System.Data.SqlClient;provider connection string="Server=67b102bb-03e4-4085-89fa-a62c009e859c.sqlserver.sequelizer.com;Database=db67b102bb03e4408589faa62c009e859c;User ID=egplnbreqiklvrmo;Password=H8XUuhRQsjJBFJJGbJnBTPHgozZVwmzRPRvRgrLcF4iwBmLeSZAqCbV2xQF4q4tg;"" providerName="System.Data.EntityClient" />
<add name="bookstoreEntities1" connectionString="metadata=res://*/Models.BookDB.csdl|res://*/Models.BookDB.ssdl|res://*/Models.BookDB.msl;provider=System.Data.SqlClient;provider connection string="Server=67b102bb-03e4-4085-89fa-a62c009e859c.sqlserver.sequelizer.com;Database=db67b102bb03e4408589faa62c009e859c;User ID=egplnbreqiklvrmo;Password=H8XUuhRQsjJBFJJGbJnBTPHgozZVwmzRPRvRgrLcF4iwBmLeSZAqCbV2xQF4q4tg;"" providerName="System.Data.EntityClient" />
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="v11.0" />
</parameters>
</defaultConnectionFactory>
</entityFramework>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31BF3856AD364E35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>