-
I am not a powershell expert. You may run this outside of OneDev from terminal to make sure it works as expected.
-
Param will be replaced by its value before running the job.
-
Previous Value Current Value Open
Closed
| Type |
Question
|
| Priority |
Normal
|
| Assignee |
Issue Votes (0)
I have use this powershell script in my ci command, but cant get content, how can i get it?
$version_temp = @tag@ echo $version_temp if([String]::IsNullOrEmpty($version_temp)) { $version = "0.0.0.0.internal_only" } else { $version = $version_temp }