/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import * as git from './git';67export function getVersion(root: string): string | undefined {8let version = process.env['BUILD_SOURCEVERSION'];910if (!version || !/^[0-9a-f]{40}$/i.test(version.trim())) {11version = git.getVersion(root);12}1314return version;15}161718