Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Release Management vNext component deployment location

Is there a way to modify the target location of the deployments for vNext templates? They all go to the following default location.

C:\Windows\DtlDownloads\ComponentName

Also, is there a way to acquire the name of the vNext deployment component dynamically so that it can be used by a PowerShell script?

I am currently using Update 4.

like image 779
Pam Avatar asked Jan 17 '26 10:01

Pam


1 Answers

To override the default location where components are copied on the target machine - you can define a global variable (go to settings tab -> global configuration variables) called applicationpathroot and give it whatever value you want.

Also, the ComponentName variable is available to the powershell scripts.

As a general rule, all the configuration variables that you see on the workflow designer, and the implicit variables that you define with the actions (the +,- icons on the deploy actions) are passed down to the scripts.

like image 150
divyanshm Avatar answered Jan 20 '26 12:01

divyanshm