missing await

This commit is contained in:
Matthew Parker [SSW]
2023-11-24 13:46:47 +10:00
parent 41eda67547
commit d43805a831

View File

@@ -162,7 +162,7 @@ public partial class MainWindowViewModel : ViewModelBase
ResultsLabel = string.Empty;
try
{
DotNetUpgrade.UpdateProjectsInSolutionToNet80(SolutionFilePath);
await DotNetUpgrade.UpdateProjectsInSolutionToNet80(SolutionFilePath);
ResultsLabel = "Successfully updated all projects in solution to .NET 8";
}
catch (Exception e)