-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeb.config
20 lines (20 loc) · 1015 Bytes
/
Web.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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=169433
-->
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0">
<assemblies>
<add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</assemblies>
</compilation>
</system.web>
<connectionStrings>
<add name="pubsEntities" connectionString="metadata=res://*/Data.EmployeeModel.csdl|res://*/Data.EmployeeModel.ssdl|res://*/Data.EmployeeModel.msl;provider=System.Data.SqlClient;provider connection string="data source=sqlserver;initial catalog=pubs;integrated security=True;multipleactiveresultsets=True;App=EntityFramework"" providerName="System.Data.EntityClient" />
</connectionStrings>
<system.serviceModel>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
</system.serviceModel>
</configuration>