2017-06-12 11:13:14 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
For more information on how to configure your ASP.NET application, please visit
|
|
|
|
https://go.microsoft.com/fwlink/?LinkId=169433
|
|
|
|
-->
|
|
|
|
<configuration>
|
2017-06-12 12:16:58 +03:00
|
|
|
<configSections>
|
|
|
|
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
|
|
|
|
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
|
|
|
</configSections>
|
2017-06-12 11:13:14 +03:00
|
|
|
<system.web>
|
2017-06-12 12:16:58 +03:00
|
|
|
<compilation debug="true" targetFramework="4.6.1" />
|
|
|
|
<httpRuntime targetFramework="4.6.1" />
|
2017-06-12 11:13:14 +03:00
|
|
|
</system.web>
|
|
|
|
<system.codedom>
|
|
|
|
<compilers>
|
2017-06-12 12:16:58 +03:00
|
|
|
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:1659;1699;1701" />
|
|
|
|
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:default /nowarn:41008 /define:_MYTYPE=\"Web\" /optionInfer+" />
|
2017-06-12 11:13:14 +03:00
|
|
|
</compilers>
|
|
|
|
</system.codedom>
|
2017-06-12 12:16:58 +03:00
|
|
|
<entityFramework>
|
|
|
|
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
|
|
|
|
<parameters>
|
|
|
|
<parameter value="mssqllocaldb" />
|
|
|
|
</parameters>
|
|
|
|
</defaultConnectionFactory>
|
|
|
|
<providers>
|
|
|
|
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
|
|
|
|
</providers>
|
|
|
|
</entityFramework>
|
2017-06-12 11:13:14 +03:00
|
|
|
</configuration>
|