Skip to content

Commit

Permalink
Replace HashSet with List
Browse files Browse the repository at this point in the history
  • Loading branch information
joeloff committed Feb 3, 2022
1 parent e411d46 commit 2869051
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net472;netcoreapp3.1</TargetFrameworks>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public override bool Execute()

List<string> missingPackIds = new(workloadPacks.Select(p => $"{p.Id}"));

HashSet<(string sourcePackage, string swixPackageId, string outputPath, WorkloadPackKind kind, string[] platforms)> packsToGenerate = new();
List<(string sourcePackage, string swixPackageId, string outputPath, WorkloadPackKind kind, string[] platforms)> packsToGenerate = new();

foreach (WorkloadPack pack in workloadPacks)
{
Expand Down

0 comments on commit 2869051

Please sign in to comment.