function getTaskPathContributions()

in BuildTasks/Common/Common.ts [328:337]


function getTaskPathContributions(manifest: any): string[] {
        // Check for task contributions
    if (!manifest.contributions) {
        return [];
    }

    return manifest.contributions
        .filter((c: any) => c.type === "ms.vss-distributed-task.task" && c.properties && c.properties["name"])
        .map((c: any) => c.properties["name"]);
}