In my msbuild script I need to pass the full directory as a parameter. How can get it?
Example: I am running the script from C:\dev, I want a relative path temp, so I am after C:\dev\temp
Note: I don't know from which folder the script will be run.
feedback
|
|
Igor is pretty close.
And Edit: MSBuild 4 If you are using MSBuild 4 you can now use the properties for this type of value.
See http://sedodream.com/2010/03/11/MSBuild40ReservedProperties.aspx. | ||||
|
feedback
|
|
Here are 3 Targets that are helpful. WhereAmI is the one I use when trying to figure out my current directory of course. The others are informative as well. (Some beyond the scope of the question).
| |||
|
feedback
|
|
MSBuild has reserved property called | |||
|
feedback
|