I'm calling a powershell script from within an InvokeProcess build activity in TFS 2013.
There are a couple properties called SolutionName
and SolutionPath
that I want to pass into the script. In the diagnostic build log, I see the properties and their values, but I'm not sure how to pass them to the script.
I can using things like $env:TF_BUILD_BUILDNUMBER
, but I can't seem to access SolutionName
or SolutionPath
.
Any help is greatly appreciated!