簡單的說
debug時會有debug時要用的setting
release到正式機時也會有release 用的setting
比方說
For debug:
<add key="MicrosoftAppId" value="e3543f2a-3e75-4411-84d8-3c7990ded400" />
|
For release:
<add key="MicrosoftAppId" value="55543f2a-1e75-2412-44d5-8sa990ded550" />
|
如何visual studio根據組態發布對應的web config
方法很簡單(使用 Web.config Transformation Syntax)
在Web.Debug.config 加入xdt:Transform="SetAttributes" xdt:Locator="Match(key)"
<add key="MicrosoftAppId" value="d07e32ed-e0d6-490d-bd63-1c5647283449" xdt:Transform="SetAttributes" xdt:Locator="Match(key)"/>
|
留言
張貼留言