gpt4 book ai didi

msbuild - 在 csproj 上运行 MSBuild 不应用 web.config 转换

转载 作者:行者123 更新时间:2023-12-02 14:09:46 25 4
gpt4 key购买 nike

我正在使用 Team City 来处理我们的部署。

因此,我创建了一个 MSBuild 步骤来编译我们的 .sln 文件。

构建后,我的输出目录中有这三个文件:

  • Web.config
  • Web.Release.config
  • Web.Debug.config

这意味着 msbuild 任务不会转换 web.config。

但是当我使用 Visual Studio 中的发布功能时,转换就完成了。

那么,msbuild 和publish 之间有什么区别?如何强制我的 msbuild 任务转换配置?

最佳答案

我在这里找到了答案

https://github.com/geersch/TeamCity/blob/master/src/part-3/README.md

这是我的任务:

<Target Name="Publish">    
<RemoveDir Directories="$(DestinationPath)" ContinueOnError="true" />
<MSBuild Projects="$(SourcePath)/$(ProjectFile)" Targets="Rebuild;ResolveReferences;_CopyWebApplication" Properties="WebProjectOutputDir=$(DestinationPath);OutDir=$(DestinationPath)\bin\" />

<TransformXml Source="$(SourcePath)/Web.Config" Transform="$(SourcePath)/Web.$(Configuration).config" Destination="$(DestinationPath)/Web.config" />
<ItemGroup>
<FilesToDelete Include="$(DestinationPath)/Web.*.config"/>
</ItemGroup>
<Delete Files="@(FilesToDelete)"/>
</Target>

你这样调用它

 <MSBuild Projects="$(MSBuildProjectFullPath)" 
Targets="Publish"
Properties="Configuration=Release;ProjectFile=WebProject.csproj;SourcePath=C:\webproject\;DestinationPath=C:\inetpub\wwwroot\app\"/>

谢谢

关于msbuild - 在 csproj 上运行 MSBuild 不应用 web.config 转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7191627/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com