Skip to content

Commit

Permalink
Merge pull request #60 from DHancock/Dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
DHancock authored Oct 23, 2022
2 parents cca0c4b + b422ddf commit c0761ce
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
7 changes: 2 additions & 5 deletions WinAppSdkCleaner/Models/Model.cs
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,6 @@ await Task.Run(() =>
CancellationToken.None);
}




private async static Task RemoveBatchAsync(IEnumerable<PackageRecord> packageRecords)
{
const int cTimeoutPerPackage = 10 * 1000; // milliseconds
Expand Down Expand Up @@ -228,7 +225,7 @@ orderby packageRecord.Depth descending

private static async Task<IEnumerable<VersionRecord>> GetVersionsListAsync()
{
Trace.WriteLine($"{nameof(GetVersionsListAsync)} entry");
Trace.WriteLine($" {nameof(GetVersionsListAsync)} entry");
Stopwatch stopwatch = Stopwatch.StartNew();

const int cMinValidVersions = 44;
Expand Down Expand Up @@ -260,7 +257,7 @@ private static async Task<IEnumerable<VersionRecord>> GetVersionsListAsync()
}

stopwatch.Stop();
Trace.WriteLine($"{nameof(GetVersionsListAsync)} found {versionsList.Count} versions, elapsed: {stopwatch.Elapsed.TotalSeconds} seconds");
Trace.WriteLine($" {nameof(GetVersionsListAsync)} found {versionsList.Count} versions, elapsed: {stopwatch.Elapsed.TotalSeconds} seconds");
return versionsList;
}

Expand Down
2 changes: 1 addition & 1 deletion WinAppSdkCleaner/app.manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="1.1.0.0" name="WinAppSdkCleaner.davidhancock.net"/>
<assemblyIdentity version="1.1.1.0" name="WinAppSdkCleaner.davidhancock.net"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
Expand Down

0 comments on commit c0761ce

Please sign in to comment.