-
I am not a powershell expert. You may run this outside of OneDev from terminal to make sure it works as expected.
-
Thanks for your reply, I will try that in native powershell env. BTW, I have a question about how does these paramters in CI step work , by replace string before execute command as marco does?
-
Param will be replaced by its value before running the job.
-
Previous Value Current Value Open
Closed
-
Has solved it by add quotation around param
| 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 }