58 lines
2.9 KiB
Plaintext
58 lines
2.9 KiB
Plaintext
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
||
|
<!-- For more information on using web.config transformation visit https://go.microsoft.com/fwlink/?LinkId=125889 -->
|
||
|
|
||
|
<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
|
||
|
<!--
|
||
|
In the example below, the "SetAttributes" transform will change the value of
|
||
|
"connectionString" to use "ReleaseSQLServer" only when the "Match" locator
|
||
|
finds an attribute "name" that has a value of "MyDB".
|
||
|
|
||
|
<connectionStrings>
|
||
|
<add name="MyDB"
|
||
|
connectionString="Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True"
|
||
|
xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
|
||
|
</connectionStrings>
|
||
|
-->
|
||
|
<appSettings>
|
||
|
<add key="SiteAddress" value="weeerohs-dev.logicsolutions.com.tw"
|
||
|
xdt:Transform="SetAttributes" xdt:Locator="Match(key)"/>
|
||
|
<add key="MailAddress" value="Carbonfoot.test@logicsolutions.com"
|
||
|
xdt:Transform="SetAttributes" xdt:Locator="Match(key)"/>
|
||
|
<add key="MailDisplayName" value="Carbon Footprint"
|
||
|
xdt:Transform="SetAttributes" xdt:Locator="Match(key)"/>
|
||
|
<add key="UserName" value="AKIAUEIJTMML5FRF7EHZ"
|
||
|
xdt:Transform="SetAttributes" xdt:Locator="Match(key)"/>
|
||
|
<add key="Password" value="BCN6KHVkC7EaiCkHgh+0XH79cisfS3/OMCALl9tQXvZF"
|
||
|
xdt:Transform="SetAttributes" xdt:Locator="Match(key)"/>
|
||
|
<add key="Host" value="email-smtp.ap-northeast-1.amazonaws.com"
|
||
|
xdt:Transform="SetAttributes" xdt:Locator="Match(key)"/>
|
||
|
<add key="WebFilesPath" value="C:\webFilesRoot"
|
||
|
xdt:Transform="SetAttributes" xdt:Locator="Match(key)"/>
|
||
|
<add key="OrganizationOnly" value="true"
|
||
|
xdt:Transform="SetAttributes" xdt:Locator="Match(key)"/>
|
||
|
<add key="CaptchaEnabled" value="1"
|
||
|
xdt:Transform="SetAttributes" xdt:Locator="Match(key)"/>
|
||
|
<add key="InsynergerAPIurl" value="https://t-infactory.insynerger.com"
|
||
|
xdt:Transform="SetAttributes" xdt:Locator="Match(key)"/>
|
||
|
</appSettings>
|
||
|
<system.web>
|
||
|
<compilation xdt:Transform="RemoveAttributes(debug)" />
|
||
|
<!--
|
||
|
In the example below, the "Replace" transform will replace the entire
|
||
|
<customErrors> section of your web.config file.
|
||
|
Note that because there is only one customErrors section under the
|
||
|
<system.web> node, there is no need to use the "xdt:Locator" attribute.
|
||
|
|
||
|
<customErrors defaultRedirect="GenericError.htm"
|
||
|
mode="RemoteOnly" xdt:Transform="Replace">
|
||
|
<error statusCode="500" redirect="InternalError.htm"/>
|
||
|
</customErrors>
|
||
|
-->
|
||
|
</system.web>
|
||
|
<connectionStrings configSource="opsCon.config">
|
||
|
<!--add name="DefaultConnection"
|
||
|
connectionString="Server=.;Initial Catalog=weeerohs-dev;Persist Security Info=False;User ID=sa;Password=logic12#;MultipleActiveResultSets=False;TrustServerCertificate=False;Connection Timeout=30;"
|
||
|
providerName="System.Data.SqlClient" xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/-->
|
||
|
</connectionStrings>
|
||
|
</configuration>
|