Visual Studio Team Services Release Definition - T

2020-04-02 08:49发布

How can I rename a file in a release definition in Visual Studio Team services? Is there a built-in or marketplace task available or otherwise, how can this be achieved?

Answer:

  1. Add the "Inline PowerShell" task from the marketplace
  2. Enter the following PowerShell code in the text area

    Param
    (
     [string]$pathToFileToRename
    )
    
    Rename-Item $pathToFileToRename NewName.txt
    
  3. Enter any required arguments in the arguments text box (you can use environment variables), for example.

    pathToFileToRename $(System.DefaultWorkingDirectory)/somepath/CurrentName.txt
    

1条回答
forever°为你锁心
2楼-- · 2020-04-02 08:59

Use the Run Command Line task or do it in a PowerShell script and invoke the script in your release.

查看更多
登录 后发表回答