我如何获得一个MSBuild任务做配置上的文件的集合转换?(How do I get an msbu

2019-06-24 01:35发布

我试图把一切在web.config文件中的一个项目,我有,这里有一个我的树结构:

  • Transform.bat
  • 变换
    • ConfigTransform.proj
    • Web.Transform.config
  • 网站
    • web.config中
    • 查看
      • web.config中

还有更多的web.config文件,但这个想法是,这会发现所有这些,适用于他们相同的配置转换。

我已经采取了从几提示博客中,我发现 ,但我陷在最后一步,实际的转型。 也有一个位,我真的不喜欢中间有一个粗略的部分(我不太明白我在做什么,我明明做错了)。 这里就是我至今:

<Project ToolsVersion="4.0" DefaultTargets="Transform" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <UsingTask TaskName="TransformXml" AssemblyFile="Tools\Microsoft.Web.Publishing.Tasks.dll"/>

    <PropertyGroup>
        <SitePath>..\..\Website</SitePath>
        <WebConfigTransformInputFile>$(SitePath)\Web.config</WebConfigTransformInputFile>
        <WebConfigTransformFile>Web.Transform.config</WebConfigTransformFile>
        <OutDir>..\N\N\</OutDir>

    </PropertyGroup>

    <ItemGroup>
        <_FilesToTransform Include="$(SitePath)\**\web.config"/>
    </ItemGroup>

    <Target Name="Transform">

    <MakeDir Directories="@(_FilesToTransform->'$(OutDir)%(RelativeDir)')" />

    <TransformXml Source="@(_FilesToTransform->'$(OutDir)%(RelativeDir)%(Filename)%(Extension)')"
                  Transform="$(WebConfigTransformFile)"
                  Destination="@(_FilesToTransform->'$(OutDir)%(RelativeDir)%(Filename)%(Extension)')" />
    </Target>
</Project>

我Transform.bat看起来是这样的:

%systemroot%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe %CD%\Transforms\ConfigTransform.proj

所以,当我打电话批次,获得创建相应的目录。 然而,正如你可以看到我已经为与OUTDIR一点点创意,使其.. \ n \ n。 出于某种原因,如果我不这样做的OUTDIR路径将是完全一样的输入目录。 所以,我显然需要改变MAKEDIR的东西,但我不知道是什么。

当它开始做转换,真正的问题来了。 我试图保持的TransformXML源参数这样或像这样:

@(_FilesToTransformNotAppConfig->'%(FullPath)')

后者给了我一个错误“无法打开源文件:不支持给定路径的格式。” 和前给了我这样的输出:

Build started 30-4-2012 14:02:48.
Project "D:\Dev\transform\DoTransforms\Transforms\ConfigTransform.proj" on node 1 (default targets).
Transform:
  Creating directory "..\N\N\..\..\Website\Views\".
  Transforming Source File: ..\N\N\..\..\Website\Views\Web.config;..\N\N\..\..\Website\Web.config
D:\Dev\transform\DoTransforms\Transforms\ConfigTransform.proj(32,2): error : Could not open Source file: Could not find a part of the path 'D:\Dev\transform\DoTransforms\Website\Views\Web.config;\Website\Web.config'.
  Transformation failed
Done Building Project "D:\Dev\transform\DoTransforms\Transforms\ConfigTransform.proj" (default targets) -- FAILED.

Build FAILED.

总结我的问题:

  1. 如何避免在OUTDIR路径问题? 我摆弄着多条路径,但我无法得到它的权利。
  2. 我如何获得的TransformXML任务接受源属性中的多个文件?

Answer 1:

我想你是八九不离十。 我已经粘贴在下面的示例展示了如何做到这一点。

在我的示例我发现变换坐在旁边的web.config文件本身。 为了您的情况下,你可以只使用一个MSBuild属性指向一个特定的文件。

<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="TransformAll" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

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

  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)'=='' ">Release</Configuration>
    <OutputFolder Condition=" '$(OutputFolder)'=='' ">C:\temp\transformed-files\</OutputFolder>
  </PropertyGroup>

  <!--
  This target shows how to transform web.config with a specific transform file associated to that specific web.config file.
  -->
  <Target Name="TransformAll">

    <!-- discover the files to transform -->
    <ItemGroup>
      <FilesToTransofm Include="$(MSBuildProjectDirectory)\**\web.config"/>
    </ItemGroup>

    <!-- Ensure all target directories exist -->
    <MakeDir Directories="@(FilesToTransofm->'$(OutputFolder)%(RecursiveDir)')"/>

    <!-- TransformXml only supports single values for source/transform/destination so use %(FilesToTransofm.Identity)
         to sned only 1 value to it -->
    <TransformXml Source="%(FilesToTransofm.Identity)"
                  Transform="@(FilesToTransofm->'%(RecursiveDir)web.$(Configuration).config')"
                  Destination="@(FilesToTransofm->'$(OutputFolder)%(RecursiveDir)web.config')" />    
  </Target>

</Project>

仅供参考,你可以下载在全样本https://github.com/sayedihashimi/sayed-samples/tree/master/TransformMultipleWebConfigs 。



文章来源: How do I get an msbuild task to do config transforms on a collection of files?