Cake.Web.Core.NuGet.NuGetInstaller.DownloadNuget C# (CSharp) Метод

DownloadNuget() приватный статический Метод

private static DownloadNuget ( FilePath nugetToolPath ) : void
nugetToolPath FilePath
Результат void
        private static void DownloadNuget(FilePath nugetToolPath)
        {
            using (var client = new WebClient())
            {
                client.DownloadFile("https://dist.nuget.org/win-x86-commandline/latest/nuget.exe", nugetToolPath.FullPath);
            }
        }