show/hide this revision's text 2 My bad...

What is wrong with:

<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <ItemGroup>
        <!-- My.Common.targets is this file itself -->
        <DirectoryLocator Include="My.Common.targets" />
    </ItemGroup>
    <PropertyGroup>
        <MyPath>@(DirectoryLocator -> '%(RootDir)%(Directory)'</MyPath>
    </PropertyGroup>
    <Target Name="Build"></Target>
</Project>

There may be some subtlety I don't get, but it seems to work...

[ Deleted ]

show/hide this revision's text 1

What is wrong with:

<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <ItemGroup>
        <!-- My.Common.targets is this file itself -->
        <DirectoryLocator Include="My.Common.targets" />
    </ItemGroup>
    <PropertyGroup>
        <MyPath>@(DirectoryLocator -> '%(RootDir)%(Directory)'</MyPath>
    </PropertyGroup>
    <Target Name="Build"></Target>
</Project>

There may be some subtlety I don't get, but it seems to work...