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

发布于 2024-12-01 04:09:45 字数 336 浏览 0 评论 0原文

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

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

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

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

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

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

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

I'm using Team City to handle our deployment.

So I created a MSBuild step to compile our .sln file.

After the build I have these three files in my output directory :

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

That means that the msbuild task doesn't transform the web.config.

But when I use the publish functionality in visual studio , the transformation is done.

So, what's the difference between a msbuild and a publish ? And how can I force my msbuild task to transform the config ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深空失忆 2024-12-08 04:09:45

我在这里找到了答案

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\"/>

谢谢

I found my answer here

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

Here is my task :

<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>

You call it like this

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

Thanks

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文