MSBuild脚本和VS2010发布应用Web.config转换

时间:2010-05-25 13:40:54

标签: asp.net xml visual-studio-2010 msbuild web-config-transform

所以,我安装了VS 2010,我正在修改我的TeamBuity构建集成的MSBuild脚本。一切都很好,只有一个例外。

如何告诉MSBuild我要应用我在发布构建时创建的Web.conifg转换文件...

我有以下产生已编译的网站但是,它将Web.config,Web.Debug.config和Web.Release.config文件(全部3)输出到已编译的输出目录。在工作室中,当我执行发布到文件系统时,它将执行转换并仅输出带有适当更改的Web.config ...

<Target Name="CompileWeb">
    <MSBuild Projects="myproj.csproj" Properties="Configuration=Release;" />
</Target>

<Target Name="PublishWeb" DependsOnTargets="CompileWeb">
    <MSBuild Projects="myproj.csproj"
    Targets="ResolveReferences;_CopyWebApplication"
    Properties="WebProjectOutputDir=$(OutputFolder)$(WebOutputFolder);
                OutDir=$(TempOutputFolder)$(WebOutputFolder)\;Configuration=Release;" />
</Target>

任何帮助都会很棒..!

我知道这可以通过其他方式完成,但我想尽可能使用新的VS 2010方式

6 个答案:

答案 0 :(得分:63)

我一直在寻找类似的信息并且找不到它,所以我在Visual Studio 2010和MSBuild 4.0附带的.targets文件中进行了一些挖掘。我认为这是寻找将执行转换的MSBuild任务的最佳位置。

据我所知,使用了以下MSBuild任务:

<Project ToolsVersion="4.0"
         DefaultTargets="Deploy"
         xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

    <UsingTask TaskName="TransformXml"
               AssemblyFile="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v10.0\Web\Microsoft.Web.Publishing.Tasks.dll"/>

    <PropertyGroup>
        <ProjectPath>C:\Path to Project\Here</ProjectPath>
        <DeployPath>C:\Path to Deploy\There</DeployPath>
        <TransformInputFile>$(ProjectPath)\Web.config</TransformInputFile>
        <TransformFile>$(ProjectPath)\Web.$(Configuration).config</TransformFile>
        <TransformOutputFile>$(DeployPath)\Web.config</TransformOutputFile>
        <StackTraceEnabled>False</StackTraceEnabled>
    </PropertyGroup>


    <Target Name="Transform">
        <TransformXml Source="$(TransformInputFile)"
                      Transform="$(TransformFile)"
                      Destination="$(TransformOutputFile)"
                      Condition="some condition here"
                      StackTrace="$(StackTraceEnabled)" />
    </Target>
</Project>

我已经测试了上述内容,可以确认它有效。您可能需要稍微调整一下结构以更好地适应您的构建脚本。

答案 1 :(得分:13)

您应该能够通过使用Package目标并指定临时目录来实现此目的。

msbuild solution.sln /p:Configuration=Release;DeployOnBuild=true;DeployTarget=Package;_PackageTempDir=..\publish

http://pattersonc.com/blog/index.php/2010/07/15/visual-studio-2010-publish-command-from-msbuild-command-line/

答案 2 :(得分:8)

或者,您尝试使用 XDT转换工具

http://ctt.codeplex.com

我正在使用它而不是弄乱晦涩的msbuild目标。适用于 app.config ,而不仅仅是 web.config

答案 3 :(得分:5)

通过以下更改对我有用

<MSBuild Projects="$(ProjectFile)"
         Targets="ResolveReferences;_WPPCopyWebApplication"
     Properties="WebProjectOutputDir=TempOutputFolder;OutDir=$(WebProjectOutputDir);Configuration=$(Configuration);" />

从MsBuild文件夹下的Microsoft.WebApplication.targets文件

_CopyWebApplication

This target will copy the build outputs along with the 
content files into a _PublishedWebsites folder.

This Task is only necessary when $(OutDir) has been redirected
to a folder other than ~\bin such as is the case with Team Build.

The original _CopyWebApplication is now a Legacy, you can still use it by 
 setting $(UseWPP_CopyWebApplication) to true.
By default, it now change to use _WPPCopyWebApplication target in
 Microsoft.Web.Publish.targets.   
It allow to leverage the web.config trsnaformation.

答案 4 :(得分:0)

我不是MSBuild的专家,但我能够使用此链接中的信息来完成相同的任务:

http://www.hanselman.com/blog/ManagingMultipleConfigurationFileEnvironmentsWithPreBuildEvents.aspx

文章底部附近有一个与MSBuild相关的部分。希望这会有所帮助。

答案 5 :(得分:0)

在搜索了几天之后,这个问题的另一个答案是:

您的发布配置文件和配置名称应该匹配。

在我看来,我没有。通过发布配置文件手动发布给我想要的结果,因为我的配置是在发布配置文件中设置的。但是,MSBuild会尝试变得智能,并根据名称神奇地连接发布配置文件和配置。 (在命令中添加/ p:Configuration导致有关引用项目的输出路径的其他奇怪错误)。

请明确说明我的意思

命令行中的MSBuild语句

msbuild myproject.csproj -t:清洁-t:重建/ p:DeployOnBuild = true / p:PublishProfile =“开发”

作品

  • 发布配置文件名称:开发中
  • 解决方案配置名称:开发

不起作用

  • 发布配置文件名称:开发中
  • 解决方案配置名称:Dev

希望这会有所帮助!