Getting project binary path from plugin's Build.cs

Currently I’m doing this which is obviously not very elegant? Are there any alternatives to avoid these assumptions and hard coding?

private string ProjectBinariesPath
{
    get {
        return Path.Combine(
            Directory.GetParent(ModulePath).Parent.Parent.ToString(), "Binaries");
    }
}