<?xml version="1.0" encoding="utf-8"?>
<!-- ?????????????? ???????? ?? ????????????? ?????????????? ?????? web.config ??. ?? ?????? http://go.microsoft.com/fwlink/?LinkId=125889 -->
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<!--
? ????????? ??????? ?????????????? "SetAttributes" ????? ???????? ????????
"connectionString" ? ????? ????????????? "ReleaseSQLServer", ?????? ?????
????????? "Match" ??????? ??????? "name", ??????? ????? ???????? "MyDB".
<connectionStrings>
<add name="MyDB"
connectionString="Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True"
xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
</connectionStrings>
-->
<system.web>
<compilation xdt:Transform="RemoveAttributes(debug)" />
<!--
? ????????? ?????? ?????????????? "Replace" ????? ???????? ????
?????? <customErrors> ? ????? web.config.
????????, ????????? ??????? ?????? ???? ?????? customErrors ? ????
<system.web>, ?? ????????? ???????????? ??????? "xdt:Locator".
<customErrors defaultRedirect="GenericError.htm"
mode="RemoteOnly" xdt:Transform="Replace">
<error statusCode="500" redirect="InternalError.htm"/>
</customErrors>
-->
</system.web>
</configuration>
|