Guest User

Untitled

a guest
Mar 25th, 2019
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 6.95 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3.  For more information on how to configure your ASP.NET application, please visit
  4.  https://go.microsoft.com/fwlink/?LinkId=169433
  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.     <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
  11.       <section name="Sunrise.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
  12.     </sectionGroup>
  13.   </configSections>
  14.   <connectionStrings>
  15.     <!-- You don't need to see this -->
  16.   </connectionStrings>
  17.   <system.web>
  18.     <authentication mode="None" />
  19.     <compilation debug="true" targetFramework="4.6.1" />
  20.     <httpRuntime targetFramework="4.6.1" />
  21.     <pages>
  22.       <namespaces>
  23.         <add namespace="System.Web.Optimization" />
  24.         <add namespace="Microsoft.AspNet.Identity" />
  25.       </namespaces>
  26.       <controls>
  27.         <add assembly="Microsoft.AspNet.Web.Optimization.WebForms" namespace="Microsoft.AspNet.Web.Optimization.WebForms" tagPrefix="webopt" />
  28.       </controls>
  29.     </pages>
  30.     <membership>
  31.       <providers>
  32.         <!--
  33.           ASP.NET Membership is disabled in this template. Please visit the following link https://go.microsoft.com/fwlink/?LinkId=301889 to learn about the ASP.NET Membership support in this template
  34.        -->
  35.         <clear />
  36.       </providers>
  37.     </membership>
  38.     <profile>
  39.       <providers>
  40.         <!--
  41.           ASP.NET Membership Profile is disabled in this template. Please visit the following link https://go.microsoft.com/fwlink/?LinkId=301889 to learn about the ASP.NET Membership support in this template
  42.        -->
  43.         <clear />
  44.       </providers>
  45.     </profile>
  46.     <roleManager>
  47.       <!--
  48.             ASP.NET Membership Role is disabled in this template. Please visit the following link https://go.microsoft.com/fwlink/?LinkId=301889 to learn about the ASP.NET Membership support in this template
  49.        -->
  50.       <providers>
  51.         <clear />
  52.       </providers>
  53.     </roleManager>
  54.     <!--
  55.            If you are deploying to a cloud environment that has multiple web server instances,
  56.            you should change session state mode from "InProc" to "Custom". In addition,
  57.            change the connection string named "DefaultConnection" to connect to an instance
  58.            of SQL Server (including SQL Azure and SQL  Compact) instead of to SQL Server Express.
  59.      -->
  60.     <sessionState mode="InProc" customProvider="DefaultSessionProvider">
  61.       <providers>
  62.         <add name="DefaultSessionProvider" type="System.Web.Providers.DefaultSessionStateProvider, System.Web.Providers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" connectionStringName="DefaultConnection" />
  63.       </providers>
  64.     </sessionState>
  65.     <httpModules>
  66.       <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" />
  67.     </httpModules>
  68.   </system.web>
  69.   <system.webServer>
  70.     <modules>
  71.       <remove name="FormsAuthentication" />
  72.       <remove name="ApplicationInsightsWebTracking" />
  73.       <add name="ApplicationInsightsWebTracking" type="Microsoft.ApplicationInsights.Web.ApplicationInsightsHttpModule, Microsoft.AI.Web" preCondition="managedHandler" />
  74.     </modules>
  75.     <validation validateIntegratedModeConfiguration="false" />
  76.   </system.webServer>
  77.   <runtime>
  78.     <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  79.       <dependentAssembly>
  80.         <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed" />
  81.         <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
  82.       </dependentAssembly>
  83.       <dependentAssembly>
  84.         <assemblyIdentity name="WebGrease" culture="neutral" publicKeyToken="31bf3856ad364e35" />
  85.         <bindingRedirect oldVersion="0.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
  86.       </dependentAssembly>
  87.       <dependentAssembly>
  88.         <assemblyIdentity name="EntityFramework" publicKeyToken="b77a5c561934e089" />
  89.         <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
  90.       </dependentAssembly>
  91.       <dependentAssembly>
  92.         <assemblyIdentity name="Microsoft.Owin" culture="neutral" publicKeyToken="31bf3856ad364e35" />
  93.         <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
  94.       </dependentAssembly>
  95.       <dependentAssembly>
  96.         <assemblyIdentity name="Microsoft.Owin.Security.OAuth" culture="neutral" publicKeyToken="31bf3856ad364e35" />
  97.         <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
  98.       </dependentAssembly>
  99.       <dependentAssembly>
  100.         <assemblyIdentity name="Microsoft.Owin.Security.Cookies" culture="neutral" publicKeyToken="31bf3856ad364e35" />
  101.         <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
  102.       </dependentAssembly>
  103.       <dependentAssembly>
  104.         <assemblyIdentity name="Microsoft.Owin.Security" culture="neutral" publicKeyToken="31bf3856ad364e35" />
  105.         <bindingRedirect oldVersion="0.0.0.0-3.0.1.0" newVersion="3.0.1.0" />
  106.       </dependentAssembly>
  107.     </assemblyBinding>
  108.   </runtime>
  109.   <entityFramework>
  110.     <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
  111.     <providers>
  112.       <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
  113.     </providers>
  114.   </entityFramework>
  115.   <system.codedom>
  116.     <compilers>
  117.       <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:1659;1699;1701" />
  118.       <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.7.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" />
  119.     </compilers>
  120.   </system.codedom>
  121.   <applicationSettings>
  122.     <Sunrise.Properties.Settings>
  123.       <setting name="RedirectDelay" serializeAs="String">
  124.         <value>3000</value>
  125.       </setting>
  126.     </Sunrise.Properties.Settings>
  127.   </applicationSettings>
  128. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment