SqlSugar/Src/Asp.Net/PerformanceTest/App.config

29 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-07-10 01:16:48 +08:00
<?xml version="1.0" encoding="utf-8"?>
2017-09-21 13:52:52 +08:00
<configuration>
2017-09-22 14:12:58 +08:00
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
2021-07-10 01:16:48 +08:00
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
2017-09-22 14:12:58 +08:00
</configSections>
<startup>
2021-07-10 01:16:48 +08:00
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/>
2017-09-22 14:12:58 +08:00
</startup>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
2021-07-10 01:16:48 +08:00
<parameter value="mssqllocaldb"/>
2017-09-22 14:12:58 +08:00
</parameters>
</defaultConnectionFactory>
<providers>
2021-07-10 01:16:48 +08:00
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/>
2017-09-22 14:12:58 +08:00
</providers>
</entityFramework>
2021-02-01 21:33:53 +08:00
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
2021-07-10 01:16:48 +08:00
<assemblyIdentity name="FreeSql" publicKeyToken="a33928e5d4a4b39c" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-2.0.105.0" newVersion="2.0.105.0"/>
2021-02-01 21:33:53 +08:00
</dependentAssembly>
</assemblyBinding>
</runtime>
2021-07-10 01:16:48 +08:00
</configuration>