-
Notifications
You must be signed in to change notification settings - Fork 8
/
Web.Release.config
32 lines (27 loc) · 1.42 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"?>
<!-- web.config dönüşümünün kullanımı hakkında daha fazla bilgi için https://go.microsoft.com/fwlink/?LinkId=125889 adresini ziyaret edin. -->
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<!--
Aşağıdaki örnekte "SetAttributes" dönüştürmesi,
yalnızca "Eşleştirme" bulucusu
"MyDB" değerine sahip bir öznitelik "adı" bulduğunda "ReleaseSQLServer"ın kullanılmasına izin verecek şekilde "connectionString"in değerini değiştirir.
<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)" />
<!--
Aşağıdaki örnekte, "Replace" dönüşümü web.config dosyanızın
<customErrors> bölümünün tamamını değiştirir.
<system.web> düğümü altında yalnızca bir customErrors bölümü olduğundan,
"xdt:Locator" özniteliğini kullanmak gerekmediğine dikkat edin.
<customErrors defaultRedirect="GenericError.htm"
mode="RemoteOnly" xdt:Transform="Replace">
<error statusCode="500" redirect="InternalError.htm"/>
</customErrors>
-->
</system.web>
</configuration>