Custom logging
[wsti_pai.git] / Projects / Web.config
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3   For more information on how to configure your ASP.NET application, please visit
4   http://go.microsoft.com/fwlink/?LinkId=301880
5   -->
6 <configuration>
7   <configSections>
8     <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
9     <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
10   </configSections>
11   <connectionStrings>
12     <add name="DefaultConnection" connectionString="Data Source=(LocalDb)\MSSQLLocalDB;AttachDbFilename=|DataDirectory|\aspnet-Projects-20160211114506.mdf;Initial Catalog=aspnet-Projects-20160211114506;Integrated Security=True" providerName="System.Data.SqlClient" />
13   <add name="ProjectsDBEntities" connectionString="metadata=res://*/Models.Model.csdl|res://*/Models.Model.ssdl|res://*/Models.Model.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=RAFAL-PC\SQLEXPRESS;initial catalog=ProjectsDB;integrated security=True;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" /></connectionStrings>
14   <appSettings>
15     <add key="webpages:Version" value="3.0.0.0" />
16     <add key="webpages:Enabled" value="false" />
17     <add key="ClientValidationEnabled" value="true" />
18     <add key="UnobtrusiveJavaScriptEnabled" value="true" />
19   </appSettings>
20   <system.web>
21     <authentication mode="Forms">
22       <forms loginUrl="~/Login/Login" timeout="2880" />
23     </authentication>
24     <compilation debug="true" targetFramework="4.5.2" />
25     <httpRuntime targetFramework="4.5.2" />
26     <httpModules>
27       <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" />
28     </httpModules>
29   </system.web>
30   <system.webServer>
31     <modules>
32       <!--<remove name="FormsAuthentication" />-->
33       <remove name="ApplicationInsightsWebTracking" />
34       <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" preCondition="managedHandler" />
35     </modules>
36     <validation validateIntegratedModeConfiguration="false" />
37   </system.webServer>
38   <runtime>
39     <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
40       <dependentAssembly>
41         <assemblyIdentity name="Microsoft.Owin.Security" publicKeyToken="31bf3856ad364e35" />
42         <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
43       </dependentAssembly>
44       <dependentAssembly>
45         <assemblyIdentity name="Microsoft.Owin.Security.OAuth" publicKeyToken="31bf3856ad364e35" />
46         <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
47       </dependentAssembly>
48       <dependentAssembly>
49         <assemblyIdentity name="Microsoft.Owin.Security.Cookies" publicKeyToken="31bf3856ad364e35" />
50         <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
51       </dependentAssembly>
52       <dependentAssembly>
53         <assemblyIdentity name="Microsoft.Owin" publicKeyToken="31bf3856ad364e35" />
54         <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
55       </dependentAssembly>
56       <dependentAssembly>
57         <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
58         <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
59       </dependentAssembly>
60       <dependentAssembly>
61         <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
62         <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
63       </dependentAssembly>
64       <dependentAssembly>
65         <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
66         <bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
67       </dependentAssembly>
68       <dependentAssembly>
69         <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
70         <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
71       </dependentAssembly>
72       <dependentAssembly>
73         <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
74         <bindingRedirect oldVersion="1.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
75       </dependentAssembly>
76       <dependentAssembly>
77         <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
78         <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
79       </dependentAssembly>
80     </assemblyBinding>
81   </runtime>
82   <entityFramework>
83     <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
84     <providers>
85       <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
86     </providers>
87   </entityFramework>
88   <system.codedom>
89     <compilers>
90       <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701" />
91       <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" />
92     </compilers>
93   </system.codedom>
94 </configuration>