show/hide this revision's text 2 added 92 characters in body

I think you can do this:

<PropertyGroup>
    <SomeReferencePath>..\Your\Other\Build\Path\</LibraryReference>
</PropertyGroup>
Then include this in the target:
Properties="ReferencePath=$(SomeReferencePath)"
That will instruct the compiler to look in that reference path to resolve it's referenced assemblies.

I think =:)

[Edit: this would all go within a new msbuild script that builds all your sub projects.]

show/hide this revision's text 1

I think you can do this:

<PropertyGroup>
    <SomeReferencePath>..\Your\Other\Build\Path\</LibraryReference>
</PropertyGroup>
Then include this in the target:
Properties="ReferencePath=$(SomeReferencePath)"
That will instruct the compiler to look in that reference path to resolve it's referenced assemblies.

I think =:)