対象とするビルド環境が 2 つあります。リリースとステージング。Web.config は次のようになります。
<system.web>
<authentication mode="Windows">
</authentication>
<authorization>
<deny users="?" />
</authorization>
</system.web>
ステージング構成にビルドして変換したい: Web.Staging.config
<system.web>
<authentication mode="Windows">
</authentication>
<authorization xdt:Transform="Replace">
<deny users="?" />
<allow roles="StagingRoles" />
<deny users="*" />
</authorization>
</system.web>
次のようにコマンドラインからビルドします。
msbuild buildscript.build /p:Configuration=Staging
ビルド後、web.config ファイルがビルド成果物フォルダーに変換されていません。ここで何か問題がありますか?
ありがとう