Please go easy I am new to msbuild and msbuildtasks!
How can I set a property which represents a relative file path to a targets file which I want to import? I need
Ok, I've found the answer. Essentially you have to set the property MSBuildCommunityTasksPath as a relative path back to the original containing directory.
For example, given a folder structure like this:
Root---project---Build---{My msbuild project}
|
|-Tools---MSBuildCommunityTasks---{Binaries and Targets}
Where : To get the targets project to reference its binaries via the property MSBuildCommunityTasksPath, it will find the tasks file like this:
..\MSBuildCommunityTasks\
Then you can import the targets file with another relative file reference :