24 lines
997 B
XML
24 lines
997 B
XML
<?xml version="1.0"?>
|
|
|
|
<!-- For more information on using Web.config transformation visit https://go.microsoft.com/fwlink/?LinkId=301874 -->
|
|
|
|
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
|
|
<appSettings configSource="AppSettings.Dev.config" xdt:Transform="Replace"/>
|
|
<connectionStrings configSource="ConnectionStrings.Dev.config" xdt:Transform="Replace"/>
|
|
<system.web>
|
|
|
|
<compilation xdt:Transform="RemoveAttributes(debug)" />
|
|
<!--
|
|
In the example below, the "Replace" transform will replace the entire
|
|
<customErrors> section of your Web.config file.
|
|
Note that because there is only one customErrors section under the
|
|
<system.web> node, there is no need to use the "xdt:Locator" attribute.
|
|
|
|
<customErrors defaultRedirect="GenericError.htm"
|
|
mode="RemoteOnly" xdt:Transform="Replace">
|
|
<error statusCode="500" redirect="InternalError.htm"/>
|
|
</customErrors>
|
|
-->
|
|
</system.web>
|
|
</configuration>
|