forked from BabylonJS/Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
web.Release.config
32 lines (27 loc) · 1.38 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
<?xml version="1.0" encoding="utf-8"?>
<!-- Pour plus d'informations sur l'utilisation de la transformation web.config, consultez la page http://go.microsoft.com/fwlink/?LinkId=125889 -->
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<!--
Dans l'exemple ci-dessous, la transformation "SetAttributes" changera la valeur de
"connectionString" afin d'utiliser "ReleaseSQLServer" uniquement lorsque le localisateur "Match"
trouve un attribut "name" qui a une valeur "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)" />
<!--
Dans l'exemple ci-dessous, la transformation "Replace" remplacera toute la section
<customErrors> de votre fichier web.config.
Dans la mesure où il n'y a qu'une section customErrors sous le
nœud <system.web>, il n'est pas nécessaire d'utiliser l'attribut "xdt:Locator".
<customErrors defaultRedirect="GenericError.htm"
mode="RemoteOnly" xdt:Transform="Replace">
<error statusCode="500" redirect="InternalError.htm"/>
</customErrors>
-->
</system.web>
</configuration>