代码之家  ›  专栏  ›  技术社区  ›  XDS

MSBuild:如何创建包含多个<Exec>任务的参数化内联任务

  •  0
  • XDS  · 技术社区  · 6 年前

    我有以下简单的任务:

    <Exec Command="  icacls   &quot;$( [System.IO.Path]::Combine( $(_tempPublishUrl), Logs              ))&quot;  /grant      Users:(CI)(OI)M  /T  "  ContinueOnError="true" />
    <Exec Command="  icacls   &quot;$( [System.IO.Path]::Combine( $(_tempPublishUrl), Logs              ))&quot;  /grant  IIS_IUSRS:(CI)(OI)M  /T  "  ContinueOnError="true" />
    
    <Exec Command="  icacls   &quot;$( [System.IO.Path]::Combine( $(_tempPublishUrl), ReportResults     ))&quot;  /grant      Users:(CI)(OI)M  /T  "  ContinueOnError="true" />
    <Exec Command="  icacls   &quot;$( [System.IO.Path]::Combine( $(_tempPublishUrl), ReportResults     ))&quot;  /grant  IIS_IUSRS:(CI)(OI)M  /T  "  ContinueOnError="true" />
    
    <Exec Command="  icacls   &quot;$( [System.IO.Path]::Combine( $(_tempPublishUrl), ReportTemplates   ))&quot;  /grant      Users:(CI)(OI)M  /T  "  ContinueOnError="true" />
    <Exec Command="  icacls   &quot;$( [System.IO.Path]::Combine( $(_tempPublishUrl), ReportTemplates   ))&quot;  /grant  IIS_IUSRS:(CI)(OI)M  /T  "  ContinueOnError="true" />
    

    <UsingTask
      TaskName="RenameDirectory"
      TaskFactory="CodeTaskFactory"
      AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll"
    >
      <ParameterGroup>
        <PathToDirToRename          ParameterType="System.String"    Required="true" />
        <PathToNewDirectoryName     ParameterType="System.String"    Required="true" />
      </ParameterGroup>
    
      <Task>
        <Reference  Include="System.Core" />
        <Using Namespace="System" />
    
        <Code Type="Fragment" Language="cs">
          <![CDATA[
              System.IO.Directory.Move(PathToDirToRename, PathToNewDirectoryName);
          ]]>
        </Code>
      </Task>
    </UsingTask>
    

    但我如何才能雇用<使用任务>将我的<分组;执行官>任务以创建一个可重用的任务(想想函数)?我找不到这样的例子。

    3 回复  |  直到 6 年前
        1
  •  0
  •   XDS    6 年前

    据我所知,您可以使用参数将Exec合并到Target中并使用 CallTarget .

        2
  •  0
  •   Leo Liu    6 年前

    作为解决方法,您可以定义 _tempPublishUrl .targets / .props 文件,例如:

    <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
      <PropertyGroup>
        <_tempPublishUrl>SomeValue1</_tempPublishUrl>
      </PropertyGroup>
    </Project>
    

    .目标 .道具

    <Import Project="..\Path\xxxx.targets" />
    

    甚至可以使用nuget来管理这个文件,这样我们就不需要导入这个文件了 .目标 / 文件,只需将nuget包添加到msbuild脚本的不同部分,检查 Creating native packages 更多细节。

    此外,您还可以添加 <UsingTask> .目标 / 文件。在这种情况下,我们不需要重复 < 代码,我们可以在导入 / 归档或安装nuget包。

    希望这有帮助。

        3
  •  0
  •   XDS    6 年前

    就我的研究而言,实现所需效果的唯一方法是将所需功能提取到单独的.msbuild文件中,并在调用上述satellite.msbuild文件时使用任务的Properties=“…”属性。这种方法并不理想,因为satellite.msbuild仍然暴露在通过“/p”开关传递给根.msbuild文件的全局属性上。但这已经足够接近理想了,肯定比什么都没有强。