我試圖使用TransformXml任務來獲取所有配置轉換在一個鏡頭,無論在Visual Studio中選擇的生成配置。我可以通過編輯.csproj文件來完成它,這就是它。TransformXml Web.config發佈時
<UsingTask TaskName="TransformXml" AssemblyFile="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.Tasks.dll"/>
<Target Name="TransformWebConfig" AfterTargets="AfterPublish">
<TransformXml Source="$(SolutionDir)WCFServices\Web.config"
Transform="$(SolutionDir)WCFServices\Web.Release.config"
Destination="$(OutDir)WebRelease.config"
StackTrace="true" />
</Target>
這裏的問題是,當我做一個發佈,轉換的配置文件被放置在輸出目錄,但這發生在刪除操作之前。我需要在刪除操作之後對配置進行轉換。
請指教?