-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeb.Debug COM.config
39 lines (34 loc) · 1.41 KB
/
Web.Debug COM.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
34
35
36
37
38
39
<?xml version="1.0"?>
<!-- For more information on using web.config transformation visit http://go.microsoft.com/fwlink/?LinkId=125889 -->
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<connectionStrings>
<add xdt:Transform="SetAttributes" xdt:Locator="Match(name)" name="backend" connectionString="Server=tcp:LOCALHOST;Database=playground;User ID=playground_com;Password=123456" />
</connectionStrings>
<custom.web>
<contentManagement xdt:Transform="SetAttributes" websiteGuid="34185801-2955-4000-835e-2a8ec0a5d5fb" />
<globalization>
<translation xdt:Transform="SetAttributes" applicationName="Playground,COM" />
<format xdt:Transform="SetAttributes" applicationName="Playground,COM" />
</globalization>
</custom.web>
<custom.diagnostics>
<logger xdt:Transform="SetAttributes" name="Playground_COM" />
</custom.diagnostics>
<system.net>
<mailSettings>
<smtp xdt:Transform="SetAttributes" from="[email protected]" />
</mailSettings>
</system.net>
<system.web>
<membership>
<providers>
<add xdt:Transform="SetAttributes" xdt:Locator="Match(name)" name="MembershipProvider" applicationName="Playground" />
</providers>
</membership>
<roleManager>
<providers>
<add xdt:Transform="SetAttributes" xdt:Locator="Match(name)" name="RoleProvider" applicationName="Playground" />
</providers>
</roleManager>
</system.web>
</configuration>