75 lines
3.8 KiB
XML
75 lines
3.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<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" />
|
|
|
|
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
|
|
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
|
|
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
|
|
</sectionGroup></configSections>
|
|
<appSettings>
|
|
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
|
|
<add key="RutaFisica" value="C:\Ultimus\DOCUMENTOS"/>
|
|
<add key="RutaVirtual" value="http://localhost/Documentos/" />
|
|
</appSettings>
|
|
<system.web>
|
|
|
|
<compilation debug="true" targetFramework="4.5" />
|
|
<httpRuntime targetFramework="4.5" />
|
|
</system.web>
|
|
<system.serviceModel>
|
|
<behaviors>
|
|
<serviceBehaviors>
|
|
<behavior>
|
|
<!-- To avoid disclosing metadata information, set the values below to false before deployment -->
|
|
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
|
|
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
|
|
<serviceDebug includeExceptionDetailInFaults="false" />
|
|
</behavior>
|
|
</serviceBehaviors>
|
|
</behaviors>
|
|
<protocolMapping>
|
|
<add binding="basicHttpsBinding" scheme="https" />
|
|
</protocolMapping>
|
|
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
|
|
</system.serviceModel>
|
|
<system.webServer>
|
|
<modules runAllManagedModulesForAllRequests="true" />
|
|
<!--
|
|
To browse web app root directory during debugging, set the value below to true.
|
|
Set to false before deployment to avoid disclosing web app folder information.
|
|
-->
|
|
<directoryBrowse enabled="true" />
|
|
<handlers>
|
|
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
|
|
<remove name="OPTIONSVerbHandler" />
|
|
<remove name="TRACEVerbHandler" />
|
|
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
|
|
</handlers>
|
|
</system.webServer>
|
|
<entityFramework>
|
|
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
|
|
<providers>
|
|
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
|
|
</providers>
|
|
</entityFramework>
|
|
|
|
<runtime>
|
|
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
|
|
<dependentAssembly>
|
|
<assemblyIdentity name="Ultimus.Utilitarios" publicKeyToken="54e6b768c4090660" culture="neutral" />
|
|
<bindingRedirect oldVersion="0.0.0.0-1.0.1.0" newVersion="1.0.1.0" />
|
|
</dependentAssembly>
|
|
</assemblyBinding>
|
|
</runtime>
|
|
|
|
<system.web.webPages.razor>
|
|
<pages pageBaseType="System.Web.Mvc.WebViewPage">
|
|
<namespaces>
|
|
<add namespace=" Ultimus.Utilitarios" />
|
|
<add namespace="Ultimus.Framework" />
|
|
</namespaces>
|
|
</pages>
|
|
</system.web.webPages.razor></configuration>
|
|
|