PipelineOperation.Test => GetChangePathScript(this._testProjectPath) +
 $"dotnet test --verbosity m --logger \"trx;LogFileName={this._workspacePath}\\TestResults\\Version-{this.CurrentBuildVersion}.trx\";",
 PipelineOperation.Deploy => GetChangePathScript(this._webApiProjectPath) +
 $"dotnet publish WebAPI.csproj -c Release -o {this._versionWorkspacePath}\\Published -p:FileVersion={this.CurrentBuildVersion};",
 PipelineOperation.Build => GetChangePathScript(this._webApiProjectPath) +
 $"dotnet build -c Release -o {this._versionWorkspacePath}\\Build -p:FileVersion={this.CurrentBuildVersion};",