markus / MarkusAutoUpdate / AppCastHostingTest / Web.Release.config @ a1e2ba68
이력 | 보기 | 이력해설 | 다운로드 (1.31 KB)
1 |
<?xml version="1.0" encoding="utf-8"?> |
---|---|
2 |
|
3 |
<!-- web.config 변환 사용에 대한 자세한 내용은 https://go.microsoft.com/fwlink/?LinkId=125889를 참조하세요. --> |
4 |
|
5 |
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform"> |
6 |
<!-- |
7 |
아래 예에서, "Match" 로케이터가 "MyDB" 값을 가진 "name" 특성을 |
8 |
찾은 경우에만 "SetAttributes" 변환에서 "ReleaseSQLServer"를 |
9 |
사용하도록 "connectionString"의 값을 변경합니다. |
10 |
|
11 |
<connectionStrings> |
12 |
<add name="MyDB" |
13 |
connectionString="Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True" |
14 |
xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/> |
15 |
</connectionStrings> |
16 |
--> |
17 |
<system.web> |
18 |
<compilation xdt:Transform="RemoveAttributes(debug)" /> |
19 |
<!-- |
20 |
|
21 |
아래 예에서 "Replace" 변환은 web.config 파일의 |
22 |
<customErrors> 섹션 전체를 바꿉니다. |
23 |
<system.web> 노드 아래에는 customErrors 섹션이 하나만 있기 때문에 |
24 |
"xdt:Locator" 특성을 사용할 필요가 없습니다. |
25 |
|
26 |
<customErrors defaultRedirect="GenericError.htm" |
27 |
mode="RemoteOnly" xdt:Transform="Replace"> |
28 |
<error statusCode="500" redirect="InternalError.htm"/> |
29 |
</customErrors> |
30 |
> |
31 |
--> |
32 |
</system.web> |
33 |
</configuration> |