Bari.Core.Tools.DownloadableExternalTool.DownloadAndDeploy C# (CSharp) Метод

DownloadAndDeploy() защищенный Метод

Downloads the tool to the given target path
protected DownloadAndDeploy ( string target ) : void
target string Target directory
Результат void
        protected virtual void DownloadAndDeploy(string target)
        {
            using (var client = new WebClient())
            {
                client.DownloadFile(url, Path.Combine(target, executableName));
            }
        }