in src/Microsoft.NET.Sdk.Functions.MSBuild/Tasks/ZipDeployTask.cs [40:48]
public override bool Execute()
{
using(DefaultHttpClient client = new DefaultHttpClient())
{
System.Threading.Tasks.Task<bool> t = ZipDeployAsync(ZipToPublishPath, DeploymentUsername, DeploymentPassword, PublishUrl, SiteName, UserAgentVersion, client, true);
t.Wait();
return t.Result;
}
}