Dan Cook
Dan Cook

Reputation: 2072

Visual Studio Team Services Release Definition - Task to rename a file?

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
    

Upvotes: 13

Views: 5719

Answers (1)

Daniel Mann
Daniel Mann

Reputation: 58980

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

Upvotes: 11

Related Questions