ASP.NETでビルド構成別にWeb.configを変更する方法
変更箇所が一つの場合
<add key="test1" value="devlocal" xdt:Transform="Replace" xdt:Locator="Match(name)"/>
Syste.webまるごとの場合
<system.web xdt:Transform="Replace">
<!-- 認証の設定 -->
<authentication mode="Forms">
<forms loginUrl="~/Account/LoginStaff" timeout="2880" />
</authentication>
<compilation debug="true" targetFramework="4.6.1" />
<httpRuntime targetFramework="4.6.1" enableVersionHeader="false" />
<customErrors mode="Off" />
<sessionState mode="StateServer" timeout="120" />
<pages>
<namespaces>
<add namespace="Kendo.Mvc.UI" />
</namespaces>
</pages>
<globalization culture="ja-JP" uiCulture="ja" />
</system.web>
</configuration>
変更箇所に xdt:Transform="Replace" を追加
0 件のコメント:
コメントを投稿