Esempio n. 1
0
        //public Task UpdateWebApp()
        //{

        //}

        async Task DownloadFile(string uri, string targetFilename)
        {
            var content = await _httpService.DownloadFile(uri);

            _fileSystemService.Save(content, targetFilename);
        }