-
Notifications
You must be signed in to change notification settings - Fork 0
/
Web.Release.config
33 lines (28 loc) · 1.34 KB
/
Web.Release.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<!-- Para obter mais informações sobre como usar a transformação do web.config, visite https://go.microsoft.com/fwlink/?LinkId=125889 -->
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<!--
No exemplo abaixo, a transformação de "SetAttributes" alterará o valor de
"connectionString" para usar "ReleaseSQLServer" somente quando o localizador "Match"
encontrar um atributo "name" que tem o valor de "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)" />
<!--
No exemplo a seguir, a transformação "Replace" substituirá toda a
seção <customErrors> do arquivo web.config.
Observe que como existe apenas uma seção customErrors sob o nó
<system.web>, não há necessidade de usar o atributo "xdt:Locator".
<customErrors defaultRedirect="GenericError.htm"
mode="RemoteOnly" xdt:Transform="Replace">
<error statusCode="500" redirect="InternalError.htm"/>
</customErrors>
>
-->
</system.web>
</configuration>