Advertisement
Nizlor

Untitled

Mar 10th, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.18 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.  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)\v11.0;AttachDbFilename=|DataDirectory|\aspnet-RødeKorsKladdRoleProvider-20140310033847.mdf;Initial Catalog=aspnet-RødeKorsKladdRoleProvider-20140310033847;Integrated Security=True"
  13.      providerName="System.Data.SqlClient" />
  14.   </connectionStrings>
  15.   <appSettings>
  16.     <add key="webpages:Version" value="3.0.0.0" />
  17.     <add key="webpages:Enabled" value="false" />
  18.     <add key="ClientValidationEnabled" value="true" />
  19.     <add key="UnobtrusiveJavaScriptEnabled" value="true" />
  20.   </appSettings>
  21.   <system.web>
  22.    <roleManager enabled="true" defaultProvider="MyRoleProvider"
  23.                cacheRolesInCookie="false" cookieName=".ASPXROLES" cookiePath="/"
  24.                cookieTimeout="30"
  25.                cookieRequireSSL="false" cookieSlidingExpiration="true"
  26.                createPersistentCookie="false" cookieProtection="All">
  27.         <providers>
  28.             <clear />
  29.             <add name="MyRoleProvider"  type="MyProject.Code.MyRoleProvider" />
  30.         </providers>
  31.     </roleManager>
  32.     <authentication mode="Windows"/>
  33.     <compilation debug="true" targetFramework="4.5" />
  34.     <httpRuntime targetFramework="4.5" />
  35.   </system.web>
  36.   <system.webServer>
  37.   </system.webServer>
  38.   <runtime>
  39.     <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  40.       <dependentAssembly>
  41.         <assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
  42.         <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  43.       </dependentAssembly>
  44.       <dependentAssembly>
  45.         <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  46.         <bindingRedirect oldVersion="1.0.0.0-5.0.0.0" newVersion="5.0.0.0" />
  47.       </dependentAssembly>
  48.       <dependentAssembly>
  49.         <assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
  50.         <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  51.       </dependentAssembly>
  52.       <dependentAssembly>
  53.         <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
  54.         <bindingRedirect oldVersion="1.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
  55.       </dependentAssembly>
  56.     </assemblyBinding>
  57.   </runtime>
  58.   <entityFramework>
  59.     <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
  60.     <providers>
  61.       <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
  62.     </providers>
  63.   </entityFramework>
  64. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement