Bari.Core.Tools.DownloadableExternalTool.DownloadTool C# (CSharp) Method

DownloadTool() private method

private DownloadTool ( ) : void
return void
        private void DownloadTool()
        {
            log.InfoFormat("Downloading tool {0} from {1} to {2}", Name, url, bariInstallLocation);

            Directory.CreateDirectory(bariInstallLocation);
            DownloadAndDeploy(bariInstallLocation);

            log.DebugFormat("Download completed");
        }