Skip to content

Commit aa25f63

Browse files
authored
Fix feature band when assigning a workload to a workload install type (#42566)
2 parents 8dd83c0 + a730dd2 commit aa25f63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Cli/dotnet/commands/dotnet-workload/WorkloadCommandParser.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ internal static void ShowWorkloadsInfo(ParseResult parseResult = null, WorkloadI
9494
reporter.WriteLine($" {workloadManifest.ManifestPath,align}");
9595

9696
reporter.Write($"{separator}{CommonStrings.WorkloadInstallTypeColumn}:");
97-
reporter.WriteLine($" {WorkloadInstallType.GetWorkloadInstallType(new SdkFeatureBand(workloadFeatureBand), dotnetPath).ToString(),align}"
97+
reporter.WriteLine($" {WorkloadInstallType.GetWorkloadInstallType(new SdkFeatureBand(Utils.Product.Version), dotnetPath).ToString(),align}"
9898
);
9999
reporter.WriteLine("");
100100
}

0 commit comments

Comments
 (0)