I have UsingTaskone which is a dll .. which refers to some dll that is NOT in the same directory as use-task-dll.
eg.
<UsingTask TaskName="FooAwesome" AssemblyFile="$(SolutionDir)packages\FooAwesome\lib\NET20\FooAwesome.dll" />
Error: FooAwesome.dll requires Foo.Core.dll
And the core exists ...
\Solution
\packages
\FooAwesome
\Foo.Core
So, how can I tell me the msbuild.proj file, although I use FooAwesome.. I know what he needs Foo.Coreand he can find this dll ... ~ here ~.
Possible?
source
share