Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.26 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.  
  12.   <connectionStrings>
  13.     <add name="EFDbContext" connectionString="Data Source=(localdb)\v11.0;Initial Catalog=master; Integrated Security=True" providerName="System.Data.SqlClient" />
  14.   </connectionStrings>
  15.  
  16.   <appSettings>
  17.     <add key="webpages:Version" value="3.0.0.0" />
  18.     <add key="webpages:Enabled" value="false" />
  19.     <add key="ClientValidationEnabled" value="true" />
  20.     <add key="UnobtrusiveJavaScriptEnabled" value="true" />
  21.   </appSettings>
  22.   <system.web>
  23.     <compilation debug="true" targetFramework="4.5" />
  24.     <httpRuntime targetFramework="4.5" />
  25.   </system.web>
  26.   <runtime>
  27.     <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  28.             <dependentAssembly>
  29.                 <assemblyIdentity name="Moq" publicKeyToken="69F491C39445E920" culture="neutral" />
  30.                 <bindingRedirect oldVersion="0.0.0.0-4.0.10827.0" newVersion="4.0.10827.0" />
  31.             </dependentAssembly>
  32.       <dependentAssembly>
  33.         <assemblyIdentity name="System.Web.Optimization" publicKeyToken="31bf3856ad364e35" />
  34.         <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="1.1.0.0" />
  35.       </dependentAssembly>
  36.       <dependentAssembly>
  37.         <assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" />
  38.         <bindingRedirect oldVersion="1.0.0.0-1.5.2.14234" newVersion="1.5.2.14234" />
  39.       </dependentAssembly>
  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.WebPages" publicKeyToken="31bf3856ad364e35" />
  46.         <bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
  47.       </dependentAssembly>
  48.       <dependentAssembly>
  49.         <assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
  50.         <bindingRedirect oldVersion="0.0.0.0-5.1.0.0" newVersion="5.1.0.0" />
  51.       </dependentAssembly>
  52.       <dependentAssembly>
  53.         <assemblyIdentity name="Moq" publicKeyToken="69f491c39445e920" culture="neutral" />
  54.         <bindingRedirect oldVersion="0.0.0.0-4.0.10827.0" newVersion="4.0.10827.0" />
  55.       </dependentAssembly>
  56.     </assemblyBinding>
  57.   </runtime>
  58.   <entityFramework>
  59.     <defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
  60.       <parameters>
  61.         <parameter value="v11.0" />
  62.       </parameters>
  63.     </defaultConnectionFactory>
  64.     <providers>
  65.       <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
  66.     </providers>
  67.   </entityFramework>
  68. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement