-
Notifications
You must be signed in to change notification settings - Fork 0
/
Web.Debug.config
30 lines (26 loc) · 1.33 KB
/
Web.Debug.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
<?xml version="1.0" encoding="utf-8"?>
<!-- Web.config dönüşümünün kullanımı hakkında daha fazla bilgi için lütfen https://go.microsoft.com/fwlink/?LinkId=301874 adresini ziyaret edin-->
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<!--
Aşağıdaki örnekte, "SetAttributes" dönüşümü, "MyDB" değerine sahip öznitelik "adı"nı yalnızca
"Match" konum belirleyicisi bulduğunda "connectionString" değerini
ReleaseSQLServer" öğesini kullanmak için değiştirecektir.
<connectionStrings>
<add name="MyDB"
connectionString="Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True"
xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
</connectionStrings>
-->
<system.web>
<!--
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ü bulunduğundan, "xdt:Locator" özniteliğini kullanmaya gerek kalmadığına dikkat edin.
<customErrors defaultRedirect="GenericError.htm"
mode="RemoteOnly" xdt:Transform="Replace">
<error statusCode="500" redirect="InternalError.htm"/>
</customErrors>
-->
</system.web>
</configuration>