Convert to new Core 3.0 using declarations
This commit is contained in:
parent
b0fec23a51
commit
1b6c577044
20 changed files with 324 additions and 381 deletions
|
|
@ -25,9 +25,8 @@ namespace LibationWinForm
|
|||
|
||||
public async Task DoMainWorkAsync()
|
||||
{
|
||||
List<FileInfo> jsonFilepaths;
|
||||
using (var pageRetriever = websiteProcessorControl1.GetPageRetriever())
|
||||
jsonFilepaths = await DownloadLibrary.DownloadLibraryAsync(pageRetriever).ConfigureAwait(false);
|
||||
using var pageRetriever = websiteProcessorControl1.GetPageRetriever();
|
||||
var jsonFilepaths = await DownloadLibrary.DownloadLibraryAsync(pageRetriever).ConfigureAwait(false);
|
||||
|
||||
successMessages.Add($"Downloaded {"library page".PluralizeWithCount(jsonFilepaths.Count)}");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue