Elastacloud.AzureManagement.Fluent.Services.Classes.BuildActivity.RebuildWithCcProjFile C# (CSharp) Méthode

RebuildWithCcProjFile() private méthode

Creates a buildactivity if one does not already exist and sets the ccproj file for msbuild
private RebuildWithCcProjFile ( string filePath ) : void
filePath string
Résultat void
        private void RebuildWithCcProjFile(string filePath)
        {
            if (Path.GetExtension(filePath) != Constants.CcprojExtension)
                throw new ApplicationException("not a .ccproj file!");

            CcprojFile = filePath;
        }